-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
47 lines (43 loc) · 1000 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
# Force Ubuntu 16.04 "Xenial" to get newer GCC, binutils etc.
dist: bionic
addons:
apt:
packages:
- cmake
- cmake-data
- gfortran
- libblas-dev
- liblapack-dev
- libgmp-dev
- libmpfr-dev
language: julia
sudo: false
os:
- linux
- osx
julia:
- 1.3
- 1.5
- nightly
matrix:
allow_failures:
- julia: nightly
- os: osx
notifications:
- email: false
script:
- while sleep 30; do echo "still alive"; done &
- julia -e 'using Pkg; Pkg.build("GroebnerBasis"); Pkg.test("GroebnerBasis");'
# env:
# global:
# - DOCUMENTER_DEBUG=true
# jobs:
# include:
# - stage: "Documentation"
# julia: 1.0
# os: linux
# script:
# - while sleep 30; do echo "still alive"; done &
# - julia --project=docs/ -e 'using Pkg; Pkg.add(PackageSpec(path=pwd())); Pkg.instantiate();'
# - julia --project=docs/ docs/make.jl
# after_success: skip