-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
29 lines (21 loc) · 903 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This is the Travis yml file template.
# Copy this to the Pearl package.
#
# vim: ft=yaml
os:
- linux
- osx
language: bash
sudo: required
env:
- TRAVIS_BASH_VERSION="4.1" TRAVIS_ZSH_VERSION="5.0.0" TRAVIS_FISH_VERSION="2.2.0" TRAVIS_GIT_VERSION="1.8.5"
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./tests/test-utils/installs/install-linux-deps.sh; fi;
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./tests/test-utils/installs/install-osx-deps.sh; fi;
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./tests/test-utils/installs/install-linux-pearl.sh; fi;
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./tests/test-utils/installs/install-osx-pearl.sh; fi;
- export PATH="~/.local/bin:/usr/local/bin:$PATH"
- echo "PEARL_PACKAGES['test']={'url':'${PWD}'}" >> ~/.config/pearl/pearl.conf
script:
- bash ./tests/test-utils/integ-tests/default-integ-tests.sh