mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-07 15:02:54 +00:00
New: Enable OSX builds with Travis (#497)
This commit is contained in:
parent
66c524140d
commit
d45d0ab1f6
1 changed files with 7 additions and 2 deletions
|
@ -1,13 +1,18 @@
|
|||
language: csharp
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
solution: src/Lidarr.sln
|
||||
install:
|
||||
before_install:
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install yarn; fi
|
||||
- nvm install 8
|
||||
- nvm use 8
|
||||
script:
|
||||
- node --version
|
||||
- ./build.sh
|
||||
- chmod +x test.sh
|
||||
- ./test.sh Linux Unit
|
||||
after_success:
|
||||
- chmod +x package.sh
|
||||
- ./package.sh
|
||||
|
||||
|
|
Loading…
Reference in a new issue