We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9666e commit 3e7f69aCopy full SHA for 3e7f69a
.travis.yml
@@ -12,9 +12,7 @@ before_script:
12
script:
13
- |
14
# get ourselves a MIR-ful libstd
15
- cd xargo &&
16
- RUSTFLAGS='-Zalways-encode-mir' xargo build &&
17
- cd ..
+ xargo/build.sh
18
19
# Test plain miri
20
cargo build &&
xargo/build.sh
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
+cd "$(readlink -e "$(dirname "$0")")"
3
+RUSTFLAGS='-Zalways-encode-mir' xargo build
0 commit comments