2014-01-07 04:34:23 +04:00
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
|
|
- gcc
|
2014-01-07 04:42:56 +04:00
|
|
|
cache: apt
|
2014-05-10 04:28:11 +04:00
|
|
|
|
2014-02-03 01:00:53 +04:00
|
|
|
before_install:
|
2014-02-03 01:25:05 +04:00
|
|
|
- sudo apt-get -yqq update #< Suggested by the Travis CI doc
|
|
|
|
- sudo apt-get -fyq install #< Fixes inconsistency of packages installed previously
|
2014-05-10 04:28:11 +04:00
|
|
|
|
2014-02-03 01:00:53 +04:00
|
|
|
install:
|
2014-07-28 17:50:41 +04:00
|
|
|
- sudo apt-get -yq install build-essential chrpath libssl-dev libfontconfig1-dev sqlite3 libsqlite3-dev ruby gperf bison flex libicu48 libicu-dev #< Build Dependencies
|
2014-05-10 04:28:11 +04:00
|
|
|
|
2014-01-07 04:45:33 +04:00
|
|
|
before_script:
|
2014-01-07 05:08:48 +04:00
|
|
|
- chmod +x ./build.sh
|
2014-02-18 03:30:41 +04:00
|
|
|
- chmod +x ./test/run-tests.sh
|
2014-02-06 03:08:41 +04:00
|
|
|
- chmod +x ./test/run-tests-ghostdriver.sh
|
2014-05-10 04:28:11 +04:00
|
|
|
|
2014-02-03 01:00:53 +04:00
|
|
|
script:
|
2014-02-05 03:24:13 +04:00
|
|
|
- ./build.sh --confirm --silent #< Build
|
2014-02-18 03:30:41 +04:00
|
|
|
- ./test/run-tests.sh #< Test (PhantomJS)
|
2014-02-06 03:08:41 +04:00
|
|
|
- ./test/run-tests-ghostdriver.sh #< Test (GhostDriver / PhantomJSDriver)
|
2014-05-10 04:28:11 +04:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#phantomjs"
|
|
|
|
on_success: always
|
|
|
|
on_failure: always
|
|
|
|
use_notice: true
|