Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik authored Sep 29, 2024
1 parent 26c9ee1 commit 2a7f0ee
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build-and-test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ jobs:
p7zip
curl
python
pacboy: gcc:p
- name: Download a single artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -172,6 +171,14 @@ jobs:
shell: msys2 {0}
run: |
set -o xtrace
if [[ "${{ inputs.target }}" == "x86_64-w64-mingw32-cxx11" ]]; then
pacman -S mingw-w64-x86_64-gcc
else
curl -L https://github.com/niXman/mingw-builds-binaries/releases/download/12.2.0-rt_v10-rev0/i686-12.2.0-release-posix-sjlj-rt_v10-rev0.7z
7z x i686-12.2.0-release-posix-sjlj-rt_v10-rev0.7z -o/msys64
fi
export MSYS=winsymlinks:sysfile
git clone https://github.com/Zentrik/julia
cd julia
Expand Down

0 comments on commit 2a7f0ee

Please sign in to comment.