Add feature alias for the latest OSTree version
This commit is contained in:
parent
14b511d32b
commit
366e9b729f
|
|
@ -6,7 +6,6 @@ variables:
|
||||||
CARGO_HOME: ${CI_PROJECT_DIR}/cargo
|
CARGO_HOME: ${CI_PROJECT_DIR}/cargo
|
||||||
SCCACHE_DIR: ${CI_PROJECT_DIR}/sccache
|
SCCACHE_DIR: ${CI_PROJECT_DIR}/sccache
|
||||||
RUSTC_WRAPPER: sccache
|
RUSTC_WRAPPER: sccache
|
||||||
OSTREE_VERSION: v2019_3
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- dnf install -y cargo rust clippy rustfmt git make ostree-devel
|
- dnf install -y cargo rust clippy rustfmt git make ostree-devel
|
||||||
|
|
@ -34,8 +33,8 @@ check:
|
||||||
build_all-features:
|
build_all-features:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- cargo clippy --all --features ${OSTREE_VERSION},futures -- -D warnings
|
- cargo clippy --all --features latest,futures -- -D warnings
|
||||||
- cargo test --verbose --all --features ${OSTREE_VERSION},futures
|
- cargo test --verbose --all --features latest,futures
|
||||||
|
|
||||||
build_default-features:
|
build_default-features:
|
||||||
stage: build
|
stage: build
|
||||||
|
|
|
||||||
|
|
@ -81,3 +81,4 @@ v2018_7 = ["v2018_6", "ostree-sys/v2018_7"]
|
||||||
v2018_9 = ["v2018_7", "ostree-sys/v2018_9"]
|
v2018_9 = ["v2018_7", "ostree-sys/v2018_9"]
|
||||||
v2019_2 = ["v2018_9", "ostree-sys/v2019_2"]
|
v2019_2 = ["v2018_9", "ostree-sys/v2019_2"]
|
||||||
v2019_3 = ["v2019_2", "ostree-sys/v2019_3"]
|
v2019_3 = ["v2019_2", "ostree-sys/v2019_3"]
|
||||||
|
latest = ["v2019_3"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue