libcryfs/.travis.yml

31 lines
1.0 KiB
YAML
Raw Normal View History

2015-02-18 16:59:43 +01:00
language: cpp
2015-04-08 17:01:25 +02:00
sudo: required
2015-02-18 16:59:43 +01:00
compiler:
- gcc
before_install:
- 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
&& rm update_gcc_version.sh
2015-02-18 16:59:43 +01:00
before_script:
- 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-04-09 18:27:29 +02:00
#The configure line is needed as a workaround for the following link, otherwise we wouldn't need "bii configure" at all because "bii build" calls it: http://forum.biicode.com/t/error-could-not-find-the-following-static-boost-libraries-boost-thread/374
- bii cpp:configure || bii cpp:configure
2015-03-13 17:50:49 +01:00
- bii cpp:build --target messmer_blobstore_test_main -- -j2
- "./bin/messmer_blobstore_test_main"
after_success:
- bii user ${BII_USERNAME} -p ${BII_PASSWORD}
- bii publish
#deploy:
# provider: biicode
# user: ${BII_USERNAME}
# password:
# secure: ${BII_PASSWORD}
# on:
# branch: develop
2015-02-19 19:19:25 +01:00