This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
70 lines (62 loc) · 2.54 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: cpp
sudo: false
matrix:
include:
# Linux GCC Builds
- os: linux
compiler: gcc
addons: &gcc9
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-9', 'gcc-9']
env: GCCVER='9' CXX_COMPILER='g++-9' C_COMPILER='gcc-9'
# 4/ OSX GCC Builds
- os: osx
osx_image: xcode11.2
compiler: gcc
addons:
homebrew:
packages:
- gcc
env: GCCVER='9' CXX_COMPILER='g++-9' C_COMPILER='gcc-9'
before_script:
## OSX
- cd ${TRAVIS_BUILD_DIR}
- export CXX=${CXX_COMPILER}
- export CC=${C_COMPILER}
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export TARGETBRANCH=osx ; fi
# linux only
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export AR=gcc-ar-${GCCVER} ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export RANLIB=gcc-ranlib-${GCCVER} ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export NM=gcc-nm-${GCCVER} ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export TARGETBRANCH=gh-pages ; fi
script :
- /bin/sh ./tag.sh
- autoreconf -vfi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget --progress=dot:mega https://lip6.github.io/libITS/linux.tgz ; tar xzf linux.tgz ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget --progress=dot:mega https://github.com/lip6/libITS/raw/osx/osx.tgz ; tar xzf osx.tgz ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export LTO=--enable-nolto ; fi
- ./configure $LTO --with-libexpat=$PWD/usr/local/ --with-gmp=$PWD/usr/local/ --with-antlrc=$PWD/usr/local/ --prefix=$PWD/usr/local/ CPPFLAGS="-I$(pwd)/usr/local/include" LDFLAGS="-L$(pwd)/usr/local/lib" || cat config.log ;
- make
- cd tests
- ( rc=0 ; for TEST in *.data ; do ./run_test.pl $TEST || rc=$? ; done; exit $rc)
- cd ..
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then strip bin/its-ctl ; fi
# linux only
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then strip -s bin/its-ctl ; fi
- cp bin/its-ctl website/
- make install
- tar cvzf $TRAVIS_OS_NAME.tgz usr/
- mv $TRAVIS_OS_NAME.tgz website/
# - make dist
# - mv its*.tar.gz website/
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: website/
target_branch: $TARGETBRANCH
on:
branch: master
after_deploy:
- curl -s -X POST -H "Content-Type:application/json" -H "Accept:application/json" -H "Travis-API-Version:3" -H "Authorization:token $APITOKEN" -d '{"request":{"message":"Triggered by ITS-CTL build.","branch":"master"}}' https://api.travis-ci.org/repo/lip6%2FITSTools/requests