Line | |
---|
1 | \language: cpp |
---|
2 | env: |
---|
3 | global: |
---|
4 | - secure: "DlFscEcRlvw4CQsk0zyJxsvW0QQ1MBobX+/ucMPkHy6JLCg2n608pdKF5L04BrwOQoTg/4xcyrIAfPPVld7LeVc/2MTmdb/Hn6jnyfEP0LdeEDQi1yuN7tUk/Rkid/CWFng4j+5I+GNQqAvoCqWwNCt8VtMO8DJWI20/ZNVDuaU=" |
---|
5 | |
---|
6 | matrix: |
---|
7 | include: |
---|
8 | - os: linux |
---|
9 | addons: |
---|
10 | apt: |
---|
11 | packages: |
---|
12 | - gfortran |
---|
13 | - os: osx |
---|
14 | osx_image: xcode10 |
---|
15 | env: OSX=10.13 |
---|
16 | compiler: clang |
---|
17 | - os: osx |
---|
18 | osx_image: xcode9.2 |
---|
19 | env: OSX=10.12 |
---|
20 | compiler: clang |
---|
21 | - os: osx |
---|
22 | osx_image: xcode8 |
---|
23 | env: OSX=10.11 |
---|
24 | compiler: clang |
---|
25 | allow_failures: |
---|
26 | - os: osx |
---|
27 | |
---|
28 | before_script: |
---|
29 | - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PLATFORM=osx$OSX-x86_64-clang`clang -dumpversion`; fi |
---|
30 | - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install bash gcc; brew link --overwrite gcc; gfortran --version; fi |
---|
31 | - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export PLATFORM=linux-x86_64-gcc`gcc -dumpversion`; fi |
---|
32 | - git clone https://github.com/coin-or/COIN-OR-OptimizationSuite COIN |
---|
33 | - cd COIN |
---|
34 | - export PROJECT=`echo $TRAVIS_REPO_SLUG | cut -d "/" -f 2` |
---|
35 | - bash ./coin.install.sh fetch --no-prompt --main-proj=$PROJECT > /dev/null |
---|
36 | |
---|
37 | script: |
---|
38 | - bash ./coin.install.sh build --no-prompt --main-proj=$PROJECT --verbosity=2 --test |
---|
39 | |
---|
40 | after_script: |
---|
41 | - if [ $TRAVIS_BRANCH = "master" ]; then export VERSION=trunk; else export VERSION=`echo $TRAVIS_BRANCH | cut -d "/" -f 2`; fi |
---|
42 | - export TGZ_FILE=$PROJECT-$VERSION-$PLATFORM.tgz |
---|
43 | - echo $TGZ_FILE |
---|
44 | - tar -czvf $TGZ_FILE build/lib/* build/bin/* build/include/* build/share/* $PROJECT/README $PROJECT/INSTALL $PROJECT/LICENSE $PROJECT/$PROJECT/AUTHORS |
---|
45 | - curl -T $TGZ_FILE -utkralphs:$BINTRAY_API -H "X-Bintray-Publish:1" -H "X-Bintray-Override:1" https://api.bintray.com/content/coin-or/download/$PROJECT/$VERSION/$TGZ_FILE |
---|
46 | |
---|
Note: See
TracBrowser
for help on using the repository browser.