forked from avleen/bashttpd
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (28 loc) · 790 Bytes
/
.travis.yml
File metadata and controls
34 lines (28 loc) · 790 Bytes
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
30
31
32
33
os:
- linux
- osx
language:
- bash
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; fi
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ucspi-tcp bash; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]];then sudo apt-get install ucspi-tcp; fi
- sudo easy_install bashtest
- chmod +x ./bashttpd.sh
- chmod +x ./execute_tests.sh
before_script:
- type tcpserver
- type bashtest
script:
- ./bashttpd.sh start
- bashtest ./tests/start-tests/start_bashttpd_fail.bashtest
- ./execute_tests.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/61d702617ab6b5af8364
on_success: always
on_failure: always
on_start: never