9a1e0dcdb3
// FREEBIE
8 lines
167 B
Bash
Executable file
8 lines
167 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
export DISPLAY=:99.0
|
|
sh -e /etc/init.d/xvfb start
|
|
sleep 3
|
|
fi
|
|
grunt test-release:$TRAVIS_OS_NAME
|