-
Notifications
You must be signed in to change notification settings - Fork 23
/
.travis.yml
99 lines (89 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
language: cpp
sudo: required
matrix:
include:
- os: linux
sudo: required
dist: xenial
compiler: gcc
env: GCC_VERSION=5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- binutils
- gfortran-5
- libgmp-dev
- libgmpxx4ldbl
- libtool
- autoconf
- libopenblas-dev
- os: linux
sudo: required
dist: bionic
compiler: gcc
env: GCC_VERSION=10
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-10
- binutils
- gfortran-10
- libgmp-dev
- libgmpxx4ldbl
- libtool
- autoconf
- libopenblas-dev
# - os: linux
# sudo: required
# dist: trusty
# compiler: clang
# env: COMPILER=clang++
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - libgmp-dev
# - libgmpxx4ldbl
# before_install:
# - sudo add-apt-repository 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main'
# - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
# - sudo apt-get update -qq
# - sudo apt-get install -qq -y clang-format-3.9
- os: osx
compiler: clang
before_install:
- brew update > brew-update.log 2>&1 || cat brew-update.log
- brew list automake &>/dev/null || brew install automake
- brew list autoconf &>/dev/null || brew install autoconf
- brew list libtool &>/dev/null || brew install libtool
# - brew install homebrew/science/openblas
install:
- export CC=${CC}${GCC_VERSION:+-${GCC_VERSION}}
- echo "CC=${CC}"
- export CXX=${CXX}${GCC_VERSION:+-${GCC_VERSION}}
- echo "CXX=${CXX}"
- export FC=${GCC_VERSION:+gfortran-${GCC_VERSION}}
- echo "FC=${FC}"
before_script:
- git clone --depth 1 https://github.com/linbox-team/givaro.git && cd givaro && ./autogen.sh && make && sudo make install && cd ..
- git clone --depth=1 https://github.com/xianyi/OpenBLAS.git && cd OpenBLAS && make && sudo make PREFIX="/usr/local" install && cd ..
- export LD_LIBRARY_PATH=/usr/local/lib
- ./autogen.sh
script:
- make
- make check
- make benchmarks
- make examples
- make tutorials
- make dist
after_failure:
- cat config.log
notifications:
on_success: change
on_failure: always