mirror of
https://github.com/Radarr/Radarr
synced 2025-03-04 19:00:02 +00:00
Move Travis builds to container-based infrastructure (#273)
* Remove example warning as it does not apply * Modify the way apt packages work in .travis.yml By modifying the way apt packages work (remove the need to directly require sudo), the builds can now run on container-based infrastructure.
This commit is contained in:
parent
f60b8cefca
commit
941b3bd701
1 changed files with 6 additions and 4 deletions
10
.travis.yml
10
.travis.yml
|
@ -1,12 +1,14 @@
|
|||
language: csharp
|
||||
solution: src/NzbDrone.sln
|
||||
script: # the following commands are just examples, use whatever your build process requires
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- nodejs
|
||||
- npm
|
||||
script:
|
||||
- ./build.sh
|
||||
- chmod +x test.sh
|
||||
# - ./test.sh Linux Unit Takes far too long, maybe even crashes travis :/
|
||||
install:
|
||||
- sudo apt-get install nodejs
|
||||
- sudo apt-get install npm
|
||||
after_success:
|
||||
- chmod +x package.sh
|
||||
- ./package.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue