forked from nakatamaho/mplapack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (41 loc) · 939 Bytes
/
.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
dist: xenial
compiler:
- g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc
- g++
- clang
- check
- libqd-dev
- libgmp-dev
- libmpfr-dev
- libmpc-dev
before_script:
- autoreconf -i
script:
- ./configure --enable-gmp --enable-mpfr --enable-qd --enable-dd --enable-double --enable-__float128 --enable-longdouble --enable-optimization --with-system-gmp --with-system-mpfr --with-system-mpc --with-system-qd
#- make -j${CPU_COUNT}
#- make
#- make check
before_deploy:
- make dist-gzip
- make dist-zip
- export DIST_GZIP=$(ls mlapack-*.tar.gz)
- export DIST_ZIP=$(ls mlapack-*.zip)
- echo "Deploying autoconf's dists (${DIST_GZIP} and ${DIST_ZIP}) to GitHub releases"
deploy:
provider: releases
api-key: $GITHUB_TOKEN
skip_cleanup: true
file_glob: true
overwrite: true
file:
- "${DIST_GZIP}"
- "${DIST_ZIP}"
on:
repo: RaumZeit/mlapack
tags: true