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

Commit

Permalink
travis: try splitting the commands
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz committed Jun 22, 2020
1 parent dcd6d55 commit b2e7cf3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
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");'
- julia --project=revdeps -e 'using Pkg; Pkg.add("Nemo"); Pkg.build("Nemo");'
- julia --project=revdeps -e 'using Pkg; Pkg.test("Nemo");'
- <<: *test-revdeps-short
os: osx
julia: 1.0
Expand All @@ -46,8 +47,10 @@ jobs:
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 Pkg; Pkg.add("Nemo"); Pkg.build("Nemo");'
- julia --project=revdeps -e 'using Pkg; Pkg.test("Nemo");'
- julia --project=revdeps -e 'using Pkg; Pkg.add("Polymake"); Pkg.build("Polymake");'
- julia --project=revdeps -e 'using Pkg; 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
Expand Down

0 comments on commit b2e7cf3

Please sign in to comment.