Skip to content

Commit

Permalink
fix(ci): Move libndi in Travis to the correct before_install so that …
Browse files Browse the repository at this point in the history
…we have this for linux systems (#542)
  • Loading branch information
TimPietrusky authored Feb 4, 2021
1 parent ea05503 commit 6f90824
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ jobs:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- USE_HARD_LINKS=false
before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then wget https://github.com/Palakis/obs-ndi/releases/download/4.9.0/libndi4_4.5.1-1_amd64.deb && sudo dpkg -i libndi4_4.5.1-1_amd64.deb; fi
script:
- yarn run electron:build -l
cache:
Expand All @@ -58,6 +56,7 @@ cache:
- "$HOME/.cache/electron-builder"
before_install:
- if [ "$TRAVIS_OS_NAME" = "windows" ] || [ "$TRAVIS_OS_NAME" = "linux" ]; then unset CSC_KEY_PASSWORD CSC_LINK; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then wget https://github.com/Palakis/obs-ndi/releases/download/4.9.0/libndi4_4.5.1-1_amd64.deb && sudo dpkg -i libndi4_4.5.1-1_amd64.deb; fi
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
Expand Down

0 comments on commit 6f90824

Please sign in to comment.