summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSheogorath2017-12-04 02:42:19 +0100
committerSheogorath2017-12-04 02:42:19 +0100
commitbb37ef87d573ebd6fa925ddfcfe146a9d350483c (patch)
treeec9ad43c63ac444a0ede527f760c009b41fe305f /.travis.yml
parenta0736f9a2ee1ba2ee1ad4a7e73683a5fe1ad3d8d (diff)
Fix build problem by updating yarn version
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index a4a2e743..ee936e57 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,7 @@ cache: yarn
env:
global:
- CXX=g++-4.8
+ - YARN_VERSION=1.3.2
jobs:
include:
@@ -11,13 +12,13 @@ jobs:
node_js:
- 6
before_install:
- - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
+ - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
- env: task=npm-test
node_js:
- 7
before_install:
- - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
+ - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
- env: task=ShellCheck
script: