Skip to content

Commit

Permalink
travis.yml: Add PAL building+testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ejona86 committed Aug 29, 2020
1 parent b45cb65 commit e0c8776
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,16 @@ before_install:
- export PATH=$PATH:/usr/games
- (cd $HOME/bin && curl -OL -u "travis:545393775684" https://ejona.ersoft.org/taus-ci/flips && chmod +x flips)
- curl -OL -u "travis:545393775684" https://ejona.ersoft.org/taus-ci/tetris.nes
- curl -OL -u "travis:545393775684" https://ejona.ersoft.org/taus-ci/tetris-pal.nes

install:
- make V=1
- mv build/ build-ntsc/
- make V=1 PAL=1
- mv build/ build-pal/

script:
- xvfb-run -a make test
- ln -s build-ntsc/ build
- xvfb-run -a make V=1 test
- rm build && ln -s build-pal/ build
- xvfb-run -a make V=1 PAL=1 test

0 comments on commit e0c8776

Please sign in to comment.