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 7e90063 commit 6be5fdcCopy full SHA for 6be5fdc
.github/workflows/build_test_windows.yml
@@ -50,11 +50,10 @@ jobs:
50
name: artifacts
51
path: override
52
- shell: julia --color=yes --project=. {0}
53
- env:
54
- SHA1: ${{ needs.build-linux.outputs.sha1 }}
55
run: |
56
- open("/home/runner/.julia/artifacts/Overrides.toml", "w") do io
57
- override_dir = joinpath(ENV["GITHUB_WORKSPACE"], "override")
58
- println(io, "$(ENV["SHA1"]) = $(override_dir)")
59
- end
+ import SCIP_jll
+ sha = last(splitpath(SCIP_jll.artifact_dir))
+ content = "$sha = $(joinpath(ENV["GITHUB_WORKSPACE"], "override"))\n"
+ @show content
+ write("/home/runner/.julia/artifacts/Overrides.toml", content)
60
- uses: julia-actions/julia-runtest@v1
0 commit comments