This repository was archived by the owner on Feb 28, 2023. It is now read-only.
File tree 1 file changed +7
-7
lines changed 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -78,27 +78,27 @@ nightly-test:
78
78
variables :
79
79
FEATURES : " unstable"
80
80
script :
81
- - cargo +nightly build --verbose --features="${EXTRA_FEATURES }" || exit 1
82
- - cargo +nightly test --workspace --verbose --features="${EXTRA_FEATURES }"
81
+ - cargo +nightly build --verbose --features="${FEATURES }" || exit 1
82
+ - cargo +nightly test --workspace --verbose --features="${FEATURES }"
83
83
84
84
stable-test :
85
85
<< : *docker-env
86
86
stage : test
87
87
variables :
88
- EXTRA_FEATURES : " "
88
+ FEATURES : " "
89
89
script :
90
- - cargo +stable build --verbose --features="${EXTRA_FEATURES }" || exit 1
91
- - cargo +stable test --workspace --verbose --features="${EXTRA_FEATURES }"
90
+ - cargo +stable build --verbose --features="${FEATURES }" || exit 1
91
+ - cargo +stable test --workspace --verbose --features="${FEATURES }"
92
92
93
93
# For now simply collect artifacts
94
94
artifacts :
95
95
<< : *docker-env
96
96
<< : *collect-artifacts
97
97
stage : deploy
98
98
variables :
99
- EXTRA_FEATURES : " dist-client,dist-server"
99
+ FEATURES : " dist-client,dist-server"
100
100
script :
101
- - cargo +stable build --release --features="${EXTRA_FEATURES }"
101
+ - cargo +stable build --release --features="${FEATURES }"
102
102
# collect artifacts
103
103
- mkdir -p ./artifacts/sccache/
104
104
- mv ./target/release/sccache ./artifacts/sccache/.
You can’t perform that action at this time.
0 commit comments