File tree 1 file changed +7
-1
lines changed 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 8
8
build-linux :
9
9
name : Julia - ${{ github.event_name }}
10
10
runs-on : ubuntu-latest
11
+ outputs :
12
+ sha1 : ${{ steps.build.outputs.SHA1 }}
11
13
steps :
12
14
- uses : actions/checkout@v4
13
15
# Install Julia 1.7 for BinaryBuilder. Note that this is an old version of
@@ -16,12 +18,14 @@ jobs:
16
18
with :
17
19
version : " 1.7"
18
20
arch : x64
19
- - run : |
21
+ - name : build
22
+ run : |
20
23
julia --color=yes -e 'using Pkg; Pkg.add("BinaryBuilder")'
21
24
julia --color=yes .github/julia/build_tarballs.jl x86_64-w64-mingw32-cxx11 --verbose --deploy=local
22
25
file=/home/runner/.julia/dev/SCIP_jll/Artifacts.toml
23
26
sha1=$(grep '^git-tree-sha1' "$file" | cut -d '"' -f2)
24
27
echo "artifact_path=${sha1}" >> $GITHUB_ENV
28
+ echo "SHA1=${sha1}" >> $GITHUB_OUTPUT
25
29
- uses : actions/upload-artifact@v4
26
30
with :
27
31
name : scip-jll
43
47
- uses : actions/download-artifact@v4
44
48
with :
45
49
name : scip-jll
50
+ path : /home/runner/.julia/dev/SCIP_jll
46
51
- uses : actions/download-artifact@v4
47
52
with :
48
53
name : artifacts
54
+ path : /home/runner/.julia/artifacts/${{ needs.build-linux.outputs.sha1 }}
49
55
- shell : julia --color=yes {0}
50
56
run : |
51
57
using Pkg
You can’t perform that action at this time.
0 commit comments