-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
52 lines (46 loc) · 911 Bytes
/
.travis.yml
File metadata and controls
52 lines (46 loc) · 911 Bytes
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
os: linux
dist: bionic
language: cpp
compiler:
- g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc
- g++
- gnulib
- gengetopt
- help2man
- zlib1g-dev
- libboost-dev
- libboost-filesystem-dev
- libboost-system-dev
- libboost-iostreams-dev
- libboost-test-dev
- libbamtools-dev
before_script:
- autoreconf -i
script:
- ./configure --enable-tests
- make -j${CPU_COUNT}
before_deploy:
- make dist-gzip
- make dist-zip
- export DIST_GZIP=$(ls idemuxcpp-*.tar.gz)
- export DIST_ZIP=$(ls idemuxcpp-*.zip)
- echo "Deploying Changelog and autoconf's dists (${DIST_GZIP} and ${DIST_ZIP}) to GitHub releases"
deploy:
provider: releases
token: $GITHUB_TOKEN
file_glob: true
overwrite: true
skip_cleanup: true
file:
- "${DIST_GZIP}"
- "${DIST_ZIP}"
- CHANGELOG.rst
on:
repo: Lexogen-Tools/idemuxcpp
tags: true