We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b45cb65 commit e0c8776Copy full SHA for e0c8776
.travis.yml
@@ -26,9 +26,16 @@ before_install:
26
- export PATH=$PATH:/usr/games
27
- (cd $HOME/bin && curl -OL -u "travis:545393775684" https://ejona.ersoft.org/taus-ci/flips && chmod +x flips)
28
- curl -OL -u "travis:545393775684" https://ejona.ersoft.org/taus-ci/tetris.nes
29
+ - curl -OL -u "travis:545393775684" https://ejona.ersoft.org/taus-ci/tetris-pal.nes
30
31
install:
32
- make V=1
33
+ - mv build/ build-ntsc/
34
+ - make V=1 PAL=1
35
+ - mv build/ build-pal/
36
37
script:
- - xvfb-run -a make test
38
+ - ln -s build-ntsc/ build
39
+ - xvfb-run -a make V=1 test
40
+ - rm build && ln -s build-pal/ build
41
+ - xvfb-run -a make V=1 PAL=1 test
0 commit comments