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 f5bbd38 commit 92e0289Copy full SHA for 92e0289
.travis.yml
@@ -27,4 +27,4 @@ before_script:
27
- bash lint.sh
28
29
script:
30
- - cargo test --features file-tests
+ - cargo test --features file-tests llvm-backend
lint.sh
@@ -7,12 +7,12 @@ if rustc --version | grep "nightly"
7
then
8
echo "On nightly."
9
echo "Running cargo clippy..."
10
- cargo rustc --features "clippy cargo-clippy" -- -Z no-trans -Z extra-plugins=clippy
+ cargo rustc --features "clippy cargo-clippy llvm-backend" -- -Z no-trans -Z extra-plugins=clippy
11
CARGO_EXIT_CODE=$?
12
else
13
echo "Not on nightly."
14
echo "Running only cargo check..."
15
- cargo check
+ cargo check --features "llvm-backend"
16
17
fi
18
0 commit comments