File tree 2 files changed +11
-10
lines changed 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -45,18 +45,16 @@ jobs:
45
45
arch : x64
46
46
- uses : julia-actions/cache@v2
47
47
- 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/")
54
48
- uses : actions/download-artifact@v4
55
49
with :
56
50
name : artifacts
57
- path : /home/runner/.julia/dev/SCIP_jll/ override
51
+ path : override
58
52
- shell : julia --color=yes --project=. {0}
53
+ env :
54
+ SHA1 : ${{ build-linux.outputs.sha1 }}
59
55
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
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ using SCIP
8
8
using SCIP_jll
9
9
using SCIP_PaPILO_jll
10
10
11
+ @show SCIP_jll. artifact_dir
12
+ @show SCIP_jll. libscip
13
+
11
14
@show (@eval (SCIP, libscip) == SCIP_jll. libscip)
12
15
@show (
13
16
SCIP_PaPILO_jll. is_available () &&
You can’t perform that action at this time.
0 commit comments