Skip to content

Commit 800a5d1

Browse files
committed
Update
1 parent 6736be6 commit 800a5d1

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/build_test_windows.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,16 @@ jobs:
4545
arch: x64
4646
- uses: julia-actions/cache@v2
4747
- uses: julia-actions/julia-buildpkg@v1
48-
- shell: julia --color=yes --project=. {0}
49-
run: |
50-
import SCIP_jll
51-
SCIP_jll.dev_jll()
52-
rm("/home/runner/.julia/dev/SCIP_jll/override/"; recursive = true)
53-
mkdir("/home/runner/.julia/dev/SCIP_jll/override/")
5448
- uses: actions/download-artifact@v4
5549
with:
5650
name: artifacts
57-
path: /home/runner/.julia/dev/SCIP_jll/override
51+
path: override
5852
- shell: julia --color=yes --project=. {0}
53+
env:
54+
SHA1: ${{ build-linux.outputs.sha1 }}
5955
run: |
60-
@show readdir("/home/runner/.julia/dev/SCIP_jll/override/")
61-
using Pkg
62-
Pkg.test("SCIP")
56+
open("~/.julia/artifacts/Overrides.toml", "w") do io
57+
override_dir = joinpath(ENV["GITHUB_WORKSPACE"], "override")
58+
println(io, "$(ENV["SHA1"]) = $(override_dir)")
59+
end
60+
- uses: julia-actions/julia-runtest@v1

test/runtests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ using SCIP
88
using SCIP_jll
99
using SCIP_PaPILO_jll
1010

11+
@show SCIP_jll.artifact_dir
12+
@show SCIP_jll.libscip
13+
1114
@show(@eval(SCIP, libscip) == SCIP_jll.libscip)
1215
@show(
1316
SCIP_PaPILO_jll.is_available() &&

0 commit comments

Comments
 (0)