Skip to content

Commit 545306a

Browse files
committed
Update
1 parent 35051cb commit 545306a

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

.github/workflows/build_test_windows.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ jobs:
3030
sha1=$(grep '^git-tree-sha1' "$file" | cut -d '"' -f2)
3131
echo "artifact_path=${sha1}" >> $GITHUB_ENV
3232
echo "SHA1=${sha1}" >> $GITHUB_OUTPUT
33-
- uses: actions/upload-artifact@v4
34-
with:
35-
name: scip-jll
36-
path: /home/runner/.julia/dev/SCIP_jll
3733
- uses: actions/upload-artifact@v4
3834
with:
3935
name: artifacts
@@ -49,18 +45,16 @@ jobs:
4945
arch: x64
5046
- uses: julia-actions/cache@v2
5147
- uses: julia-actions/julia-buildpkg@v1
52-
- uses: actions/download-artifact@v4
53-
with:
54-
name: scip-jll
55-
path: /home/runner/.julia/dev/SCIP_jll
48+
- shell: julia --color=yes --project=. {0}
49+
import SCIP_jll
50+
SCIP_jll.dev_jll()
51+
rm("/home/runner/.julia/dev/SCIP_jll/override/"; recursive = true)
52+
mkdir("/home/runner/.julia/dev/SCIP_jll/override/")
5653
- uses: actions/download-artifact@v4
5754
with:
5855
name: artifacts
59-
path: /home/runner/.julia/artifacts/${{ needs.build-linux.outputs.sha1 }}
56+
path: /home/runner/.julia/dev/SCIP_jll/override
6057
- shell: julia --color=yes --project=. {0}
61-
run: |
58+
@show readdir("/home/runner/.julia/dev/SCIP_jll/override/")
6259
using Pkg
63-
Pkg.instantiate()
64-
Pkg.develop(; path = "/home/runner/.julia/dev/SCIP_jll")
65-
Pkg.update()
6660
Pkg.test("SCIP")

0 commit comments

Comments
 (0)