Skip to content

Commit

Permalink
CI: hardcode AbstractAlgebra 0.10 for now
Browse files Browse the repository at this point in the history
The upgrade to 0.11 (and/or to Nemo 0.18.5) breaks some of our
tests as printing changes. Since the new printing is IMHO worse,
we should investigate this further; in the meantime, fix the CI tests
by restricting the AbstractAlgebra version.
  • Loading branch information
fingolfin committed Dec 22, 2020
1 parent 4963ea8 commit 65ee87c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ jobs:
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- name: Add optional Julia depdencies for GAP tests
run: julia -e 'using Pkg; Pkg.add(["Singular", "Nemo"])'
run: |
julia -e '
using Pkg
Pkg.add(PackageSpec(name="AbstractAlgebra", version="0.10"))
Pkg.add(["Singular", "Nemo"])
'
- name: GAP tests
run: |
julia -e '
Expand Down

0 comments on commit 65ee87c

Please sign in to comment.