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 024ccb4 commit f5a38f2Copy full SHA for f5a38f2
.travis.yml
@@ -24,7 +24,7 @@ before_install:
24
25
install:
26
- |
27
- if [ -z ${INTEGRATION} ]; then
+ if [ -z ${INTEGRATION} ] && [ "$TRAVIS_OS_NAME" == "linux" ]; then
28
. $HOME/.nvm/nvm.sh
29
nvm install stable
30
nvm use stable
ci/base-tests.sh
@@ -14,7 +14,9 @@ set -ex
14
echo "Running clippy base tests"
15
16
PATH=$PATH:./node_modules/.bin
17
-remark -f *.md > /dev/null
+if [ "$TRAVIS_OS_NAME" == "linux" ]; then
18
+ remark -f *.md > /dev/null
19
+fi
20
# build clippy in debug mode and run tests
21
cargo build --features debugging
22
cargo test --features debugging
0 commit comments