File tree 1 file changed +7
-13
lines changed
1 file changed +7
-13
lines changed Original file line number Diff line number Diff line change 30
30
sha1=$(grep '^git-tree-sha1' "$file" | cut -d '"' -f2)
31
31
echo "artifact_path=${sha1}" >> $GITHUB_ENV
32
32
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
37
33
- uses : actions/upload-artifact@v4
38
34
with :
39
35
name : artifacts
@@ -49,18 +45,16 @@ jobs:
49
45
arch : x64
50
46
- uses : julia-actions/cache@v2
51
47
- 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/")
56
53
- uses : actions/download-artifact@v4
57
54
with :
58
55
name : artifacts
59
- path : /home/runner/.julia/artifacts/${{ needs.build-linux.outputs.sha1 }}
56
+ path : /home/runner/.julia/dev/SCIP_jll/override
60
57
- shell : julia --color=yes --project=. {0}
61
- run : |
58
+ @show readdir("/home/runner/.julia/dev/SCIP_jll/override/")
62
59
using Pkg
63
- Pkg.instantiate()
64
- Pkg.develop(; path = "/home/runner/.julia/dev/SCIP_jll")
65
- Pkg.update()
66
60
Pkg.test("SCIP")
You can’t perform that action at this time.
0 commit comments