Skip to content
Snippets Groups Projects

split CI in 2 jobs : builds and tests

Merged Éloïs requested to merge ci into dev
1 file
+ 11
3
Compare changes
  • Side-by-side
  • Inline
+ 11
3
stages:
- test
- builds
- tests
before_script:
- export PATH="$HOME/.cargo/bin:$PATH"
test:
stage: test
builds:
stage: builds
tags:
- redshift-rs
script:
- cargo build
tests:
stage: tests
tags:
- redshift-rs
script:
Loading