Skip to content

Commit 889af58

Browse files
committed
Update
1 parent cd9f89d commit 889af58

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build_test_windows.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
build-linux:
99
name: Julia - ${{ github.event_name }}
1010
runs-on: ubuntu-latest
11+
outputs:
12+
sha1: ${{ steps.build.outputs.SHA1 }}
1113
steps:
1214
- uses: actions/checkout@v4
1315
# Install Julia 1.7 for BinaryBuilder. Note that this is an old version of
@@ -16,12 +18,14 @@ jobs:
1618
with:
1719
version: "1.7"
1820
arch: x64
19-
- run: |
21+
- name: build
22+
run: |
2023
julia --color=yes -e 'using Pkg; Pkg.add("BinaryBuilder")'
2124
julia --color=yes .github/julia/build_tarballs.jl x86_64-w64-mingw32-cxx11 --verbose --deploy=local
2225
file=/home/runner/.julia/dev/SCIP_jll/Artifacts.toml
2326
sha1=$(grep '^git-tree-sha1' "$file" | cut -d '"' -f2)
2427
echo "artifact_path=${sha1}" >> $GITHUB_ENV
28+
echo "SHA1=${sha1}" >> $GITHUB_OUTPUT
2529
- uses: actions/upload-artifact@v4
2630
with:
2731
name: scip-jll
@@ -43,9 +47,11 @@ jobs:
4347
- uses: actions/download-artifact@v4
4448
with:
4549
name: scip-jll
50+
path: /home/runner/.julia/dev/SCIP_jll
4651
- uses: actions/download-artifact@v4
4752
with:
4853
name: artifacts
54+
path: /home/runner/.julia/artifacts/${{ needs.build-linux.outputs.sha1 }}
4955
- shell: julia --color=yes {0}
5056
run: |
5157
using Pkg

0 commit comments

Comments
 (0)