2022-03-01 16:50:49 +00:00
|
|
|
image: "rust:latest"
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
2022-03-01 17:42:10 +00:00
|
|
|
- test
|
2022-03-01 16:50:49 +00:00
|
|
|
|
|
|
|
build-job:
|
|
|
|
stage: build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- target/release/indivisible
|
|
|
|
script:
|
|
|
|
- cargo build --release
|
2022-03-01 17:42:10 +00:00
|
|
|
|
|
|
|
test-job:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- ./test.sh
|
2022-03-01 17:59:38 +00:00
|
|
|
|
|
|
|
include:
|
|
|
|
- template: Security/License-Scanning.gitlab-ci.yml
|