2015-02-18 16:59:43 +01:00
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
before_install:
|
2015-02-20 20:37:07 +01:00
|
|
|
- wget https://raw.githubusercontent.com/smessmer/travis-utils/master/update_gcc_version.sh
|
|
|
|
&& chmod +x update_gcc_version.sh
|
2015-02-19 17:49:33 +01:00
|
|
|
&& ./update_gcc_version.sh 4.9
|
2015-02-20 20:37:07 +01:00
|
|
|
&& rm update_gcc_version.sh
|
2015-02-18 16:59:43 +01:00
|
|
|
before_script:
|
2015-03-12 14:59:38 +01:00
|
|
|
- wget https://raw.githubusercontent.com/smessmer/travis-utils/master/setup_biicode_project.sh
|
|
|
|
&& chmod +x setup_biicode_project.sh
|
|
|
|
&& ./setup_biicode_project.sh
|
|
|
|
&& rm setup_biicode_project.sh
|
2015-02-18 16:59:43 +01:00
|
|
|
script:
|
2015-03-07 01:50:28 +01:00
|
|
|
- bii cpp:build -- -j2
|
2015-03-12 14:59:38 +01:00
|
|
|
- "./bin/messmer_blobstore_test_main"
|
2015-02-19 19:19:25 +01:00
|
|
|
deploy:
|
|
|
|
provider: biicode
|
|
|
|
user: ${BII_USERNAME}
|
|
|
|
password:
|
|
|
|
secure: ${BII_PASSWORD}
|
|
|
|
on:
|
|
|
|
branch: develop
|
|
|
|
|