initial commit
This commit is contained in:
34
.gitlab-ci.yml
Normal file
34
.gitlab-ci.yml
Normal file
@@ -0,0 +1,34 @@
|
||||
default:
|
||||
# https://gitlab.com/mtczekajlo/lsm6ds3tr-rs-docker
|
||||
image: registry.gitlab.com/mtczekajlo/lsm6ds3tr-rs-docker:f3598e64faee1b7e66b2bb792fce3290
|
||||
|
||||
stages:
|
||||
- check
|
||||
- build
|
||||
- test
|
||||
|
||||
check:
|
||||
stage: check
|
||||
dependencies: []
|
||||
script:
|
||||
- ci/jobs/check
|
||||
|
||||
doc:
|
||||
stage: check
|
||||
dependencies: []
|
||||
script:
|
||||
- ci/jobs/doc
|
||||
|
||||
build:
|
||||
stage: build
|
||||
needs: ["check"]
|
||||
dependencies: ["check"]
|
||||
script:
|
||||
- ci/jobs/build
|
||||
|
||||
test:
|
||||
stage: test
|
||||
needs: ["build"]
|
||||
dependencies: ["build"]
|
||||
script:
|
||||
- ci/jobs/test
|
||||
Reference in New Issue
Block a user