Skip to content

Commit 3cc93fd

Browse files
authored
Merge pull request #456 from probcomp/20220303-alexlew-travis-fixes
Update Travis config
2 parents 86f27bc + a36178c commit 3cc93fd

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
# See http://docs.travis-ci.com/user/languages/julia/ and https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#Hosting-Documentation-1
22
# See status of Travis builds at https://travis-ci.org/probcomp/Gen
33

4+
# As of March 2022, Gen is not compatible with Julia 1.7,
5+
# due to a regression involving NamedTuples:
6+
# https://github.com/JuliaLang/julia/issues/43783
7+
# The fix is already in `nightly` and slated for 1.8;
8+
# hopefully it will also be backported
9+
# to a future minor release of 1.7.
410
language: julia
511
julia:
6-
- 1.4
7-
- 1.5
8-
- 1.6
12+
- 1.3 # earliest supported version
13+
- 1.6 # LTS
14+
- nightly
915

1016
jobs:
1117
include:
12-
- stage: test
13-
script:
14-
- julia -e 'using Pkg; Pkg.build(); Pkg.test()'
1518
- stage: docs
1619
julia: 1.6
1720
os: linux

0 commit comments

Comments
 (0)