We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb26ebb commit 01c211cCopy full SHA for 01c211c
.github/workflows/singular.yml
@@ -70,6 +70,7 @@ jobs:
70
steps:
71
- uses: actions/checkout@v4
72
- name: "Set up Julia"
73
+ id: setup-julia
74
uses: julia-actions/setup-julia@v2
75
with:
76
version: ${{ matrix.julia-version }}
@@ -103,6 +104,9 @@ jobs:
103
104
varname=\"oscar_run_doctests\",
105
filename=\"${GITHUB_ENV}\");"
106
107
+ - name: "workaround libstdc++ issue for julia 1.6"
108
+ if: matrix.julia-version == '~1.6.0-0' # && runner.os == 'Linux'
109
+ run: rm -f ${{ steps.setup-julia.outputs.julia-bindir }}/../lib/julia/libstdc++.so.6
110
- name: "Run tests"
111
if: steps.setupdev.outputs.skiptests != 'true'
112
run: |
0 commit comments