We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 434a69f commit b7396c3Copy full SHA for b7396c3
.appveyor.yml
@@ -19,8 +19,7 @@ install:
19
build: false
20
21
test_script:
22
- - cargo test --target %TARGET%
23
- - cargo test --target %TARGET% --release
+ - C:\msys64\usr\bin\sh ci\run.sh
24
25
branches:
26
only:
ci/run.sh
@@ -2,5 +2,8 @@
2
3
set -ex
4
5
+# FIXME(rust-lang/rust#45201) shouldn't need to specify one codegen unit
6
+export RUSTFLAGS="$RUSTFLAGS -C codegen-units=1"
7
+
8
cargo test --target $TARGET
9
cargo test --release --target $TARGET
0 commit comments