blob: 9b313f5729414e5c57af0da0142f3f99fe642e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
language: bash
os:
- linux
- osx
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick jhead; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install imagemagick jhead; fi
before_script:
- curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh
script:
- bash tests.sh
|