mirror of https://github.com/lidarr/Lidarr
New: Travis yarn cache, yarn version spec, node 10 (#674)
This commit is contained in:
parent
08c0e03fab
commit
24737baee6
16
.travis.yml
16
.travis.yml
|
@ -1,7 +1,9 @@
|
|||
language: csharp
|
||||
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
|
@ -13,10 +15,20 @@ addons:
|
|||
- yarn
|
||||
- dos2unix
|
||||
update: true
|
||||
|
||||
solution: src/Lidarr.sln
|
||||
|
||||
before_install:
|
||||
- nvm install 8
|
||||
- nvm use 8
|
||||
- nvm install 10
|
||||
- nvm use 10
|
||||
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.13.0
|
||||
- export PATH=$HOME/.yarn/bin:$PATH
|
||||
|
||||
cache:
|
||||
yarn: true
|
||||
directories:
|
||||
- node_modules
|
||||
|
||||
script:
|
||||
- ./build.sh
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./test.sh Mac Unit; fi
|
||||
|
|
Loading…
Reference in New Issue