gitlab ci
This commit is contained in:
parent
611ac97f3f
commit
e9acc2081c
1 changed files with 25 additions and 0 deletions
25
.gitlab-ci.yml
Normal file
25
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
image: node:latest
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- node_modules/
|
||||
|
||||
all_tests:
|
||||
stage: test
|
||||
script:
|
||||
- make -f test/lora32/Makefile
|
||||
- npm install --unsafe-perm
|
||||
- npm test
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
dependencies:
|
||||
- all_tests
|
||||
script:
|
||||
- echo "Echo"
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
Loading…
Reference in a new issue