Files
indivisible-rs/.gitlab-ci.yml

22 lines
288 B
YAML
Raw Permalink Normal View History

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