24 lines
761 B
YAML
24 lines
761 B
YAML
|
language: cpp
|
||
|
compiler:
|
||
|
- gcc
|
||
|
install:
|
||
|
- wget https://raw.githubusercontent.com/smessmer/travis-utils/master/update_gcc_version.sh && chmod +x update_gcc_version.sh
|
||
|
&& ./update_gcc_version.sh 4.9
|
||
|
- sudo apt-get install libfuse-dev
|
||
|
before_script:
|
||
|
- wget https://raw.githubusercontent.com/smessmer/travis-utils/master/setup_biicode_project.py && chmod +x setup_biicode_project.py
|
||
|
&& ./setup_biicode_project.py
|
||
|
script:
|
||
|
- bii find
|
||
|
- bii cpp:configure
|
||
|
- bii cpp:build
|
||
|
- wget https://raw.githubusercontent.com/smessmer/travis-utils/master/run_with_fuse.sh && chmod +x run_with_fuse.sh
|
||
|
&& ./run_with_fuse.sh ../../../bin/messmer_fspp_test_main
|
||
|
deploy:
|
||
|
provider: biicode
|
||
|
user: ${BII_USERNAME}
|
||
|
password:
|
||
|
secure: ${BII_PASSWORD}
|
||
|
on:
|
||
|
branch: develop
|