Skip to content
Snippets Groups Projects
Commit 927620a1 authored by Éloïs's avatar Éloïs
Browse files

Merge branch '51-change-ci-congregate-stable-build-and-stable-tests-in-same-job' into 'dev'

Resolve "Change CI : congregate Stable Build and Stable Tests in same job"

Closes #51

See merge request !42
parents 0315153d 2c185976
No related branches found
No related tags found
1 merge request!42Resolve "Change CI : congregate Stable Build and Stable Tests in same job"
stages:
- builds
- tests
- build_and_tests
- clippy
- fmt
before_script:
- export PATH="$HOME/.cargo/bin:$PATH"
build:stable:
stage: builds
build_and_tests:stable:
stage: build_and_tests
tags:
- redshift-rs-stable
script:
- cargo build --all-features
tests:stable:
stage: tests
tags:
- redshift-rs-stable
script:
- cargo test
- cargo test --all-features
build_and_tests:beta:
stage: tests
stage: build_and_tests
tags:
- redshift-rs-beta
script:
- rustup update
- cargo test
- cargo test --all-features
when: manual
allow_failure: true
build_and_tests:nightly:
stage: tests
stage: build_and_tests
image: rustlang/rust:nightly
tags:
- redshift-rs-nightly
script:
- cargo test
- cargo test --all-features
when: manual
allow_failure: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment