You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then if [[ ! -f "$PANDOC/pandoc.deb" ]]; then curl -L "$PANDOC_DEB" > "$PANDOC/pandoc.deb" && dpkg -x "$PANDOC/pandoc.deb" "$PANDOC"; fi ; fi
24
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then export PATH="$PANDOC/usr/bin:$PATH"; fi
25
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then git clone https://github.com/greghendershott/travis-racket.git; fi
26
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cat travis-racket/install-racket.sh | bash; fi
27
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then export PATH="${RACKET_DIR}/bin:${PATH}"; fi
28
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install -y nasm; fi
29
+
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew cask install racket; fi
30
+
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install nasm; fi
31
+
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install pandoc; fi
32
+
23
33
install:
34
+
24
35
before_script:
25
-
- export DISPLAY=:99.0
26
-
- sh -e /etc/init.d/xvfb start
27
-
- sleep 3
36
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then export DISPLAY=:99.0; fi
37
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sh -e /etc/init.d/xvfb start; fi
38
+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sleep 3; fi
0 commit comments