File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -173,10 +173,6 @@ task:
173
173
env :
174
174
TARGET : x86_64-fuchsia
175
175
CHECK_TESTS : true
176
- - name : illumos x86_64
177
- env :
178
- TARGET : x86_64-unknown-illumos
179
- TOOLCHAIN : stable
180
176
container :
181
177
image : rust:1.40
182
178
setup_script :
@@ -189,6 +185,21 @@ task:
189
185
# they don't build on all platforms.
190
186
before_cache_script : rm -rf $CARGO_HOME/registry/index
191
187
188
+ # illumos toolchain isn't available on 1.40
189
+ task :
190
+ name : illumos
191
+ env :
192
+ TARGET : x86_64-unknown-illumos
193
+ TOOLCHAIN : stable
194
+ container :
195
+ image : rust:1.40
196
+ setup_script :
197
+ - rustup toolchain install $TOOLCHAIN --profile minimal --target $TARGET
198
+ script :
199
+ - cargo +$TOOLCHAIN check --target $TARGET
200
+ - cargo +$TOOLCHAIN check --target $TARGET --release
201
+ before_cache_script : rm -rf $CARGO_HOME/registry/index
202
+
192
203
# Redoxer is too unreliable, so we'll do a cross-build only
193
204
# See also:
194
205
# https://github.com/nix-rust/nix/issues/1258
You can’t perform that action at this time.
0 commit comments