forked from gap-packages/tomlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (31 loc) · 703 Bytes
/
Copy path.travis.yml
File metadata and controls
35 lines (31 loc) · 703 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
language: c
env:
global:
- GAPROOT=gaproot
- COVDIR=coverage
addons:
apt_packages:
- libgmp-dev
- libreadline-dev
- libgmp-dev:i386
- libreadline-dev:i386
- gcc-multilib
- g++-multilib
matrix:
include:
- env: GAPBRANCH=master ABI=64
- env: GAPBRANCH=master ABI=32
- env: GAPBRANCH=stable-4.9
- env: GAPBRANCH=stable-4.10
branches:
only:
- master
before_script:
- export GAPROOT="$HOME/gap"
- git clone https://github.com/gap-system/pkg-ci-scripts.git scripts
- scripts/build_gap.sh
script:
- scripts/build_pkg.sh && scripts/run_tests.sh
after_script:
- bash scripts/gather-coverage.sh
- bash <(curl -s https://codecov.io/bash)