Skip to content

Commit

Permalink
Fix Travis scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Seulgi Kim authored and sgkim126 committed Feb 28, 2019
1 parent 75b3ea6 commit 99f8a8d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- SKIP=`.travis/check-change '^(docs|spec)/'` && if [[ "$SKIP" = "skip" ]]; then exit 0; fi
install:
- SKIP=`.travis/check-change '^test/'` && if [[ "$SKIP" != "skip" ]]; then RUN_UNIT_TEST=1; fi
- test $RUN_UNIT_TEST && rustup toolchain install nightly-2018-12-06
- test $RUN_UNIT_TEST && rustup component add rustfmt-preview --toolchain nightly-2018-12-06
- test $RUN_UNIT_TEST && rustup component add clippy-preview --toolchain nightly-2018-12-06
- test $RUN_UNIT_TEST && rustup toolchain install nightly-2018-12-06 || true
- test $RUN_UNIT_TEST && rustup component add rustfmt-preview --toolchain nightly-2018-12-06 || true
- test $RUN_UNIT_TEST && rustup component add clippy-preview --toolchain nightly-2018-12-06 || true
- nvm install 10
- nvm use 10
- npm install -g yarn
Expand All @@ -40,9 +40,9 @@ jobs:
- SKIP=`.travis/check-change '^(docs|spec)/'` && if [[ "$SKIP" = "skip" ]]; then exit 0; fi
install:
- SKIP=`.travis/check-change '^test/'` && if [[ "$SKIP" != "skip" ]]; then RUN_UNIT_TEST=1; fi
- test $RUN_UNIT_TEST && rustup toolchain install nightly-2018-12-06
- test $RUN_UNIT_TEST && rustup component add rustfmt-preview --toolchain nightly-2018-12-06
- test $RUN_UNIT_TEST && rustup component add clippy-preview --toolchain nightly-2018-12-06
- test $RUN_UNIT_TEST && rustup toolchain install nightly-2018-12-06 || true
- test $RUN_UNIT_TEST && rustup component add rustfmt-preview --toolchain nightly-2018-12-06 || true
- test $RUN_UNIT_TEST && rustup component add clippy-preview --toolchain nightly-2018-12-06 || true
- nvm install 10
- nvm use 10
- npm install -g yarn
Expand Down

0 comments on commit 99f8a8d

Please sign in to comment.