mirror of
https://github.com/JustusPlays78/SectorFileUpdater.git
synced 2025-04-29 19:24:24 +00:00
Merge branch 'paul-bastelt' of https://git.julscha.de/julscha/sectorfileupdater into paul-bastelt
This commit is contained in:
commit
0a4d47f222
32
.gitlab-ci.yml
Normal file
32
.gitlab-ci.yml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
version: 2.1
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
working_directory: ~/repo
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:11
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Update NPM
|
||||||
|
command: "sudo npm install -g npm"
|
||||||
|
- restore_cache:
|
||||||
|
key: dependency-cache-{{ checksum "package.json" }}
|
||||||
|
- run:
|
||||||
|
name: Install Dependencies
|
||||||
|
command: npm install
|
||||||
|
- run:
|
||||||
|
name: Install dpkg and fakeroot
|
||||||
|
command: |
|
||||||
|
sudo apt-get update -y
|
||||||
|
sudo apt-get install -y dpkg fakeroot
|
||||||
|
|
||||||
|
- save_cache:
|
||||||
|
key: dependency-cache-{{ checksum "package.json" }}
|
||||||
|
paths:
|
||||||
|
- ./node_modules
|
||||||
|
- run:
|
||||||
|
name: Generate Builds
|
||||||
|
command: npm run make
|
||||||
|
|
||||||
|
- store_artifacts:
|
||||||
|
path: ~/repo/out/make
|
Loading…
x
Reference in New Issue
Block a user