Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
add revdep tests
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz committed Jun 8, 2020
1 parent 56e89f4 commit e7dbb47
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: julia
dist: bionic

os:
- linux
Expand All @@ -17,8 +18,43 @@ branches:
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # release tags

notifications:
- email: false
email: false

jobs:
allow_failures:
- julia: nightly
include:
- &test-revdeps-short
stage: test revdeps
os: linux
julia: 1.0
script:
- julia --project=revdeps -e 'using Pkg; Pkg.develop(PackageSpec(path=Base.pwd())); Pkg.build("LoadFlint");'
- julia --project=revdeps -e 'using Pkg; Pkg.add("Nemo"); Pkg.build("Nemo"); Pkg.test("Nemo");'
- <<: *test-revdeps-short
os: osx
julia: 1.0
- <<: *test-revdeps-short
os: windows
julia: 1.0
- <<: *test-revdeps-short
os: windows
julia: 1.4
- &test-revdeps-full
stage: test revdeps full
os: linux
julia: 1.4
script:
- julia --project=revdeps -e 'using Pkg; Pkg.develop(PackageSpec(path=Base.pwd())); Pkg.build("LoadFlint");'
- julia --project=revdeps -e 'using Pkg; Pkg.add("Nemo"); Pkg.build("Nemo"); Pkg.test("Nemo");'
- julia --project=revdeps -e 'using Pkg; Pkg.add("Polymake"); Pkg.build("Polymake"); Pkg.test("Polymake");'
- julia --project=revdeps -e 'using Polymake; c = polytope.cube(3); using Nemo; CC, s = Nemo.PolynomialRing(ComplexField(256), "s"); println(s);'
- <<: *test-revdeps-full
os: linux
julia: 1.3
- <<: *test-revdeps-full
os: osx
julia: 1.4
- <<: *test-revdeps-full
os: osx
julia: 1.3

0 comments on commit e7dbb47

Please sign in to comment.