Skip to content

Commit

Permalink
ci: Fix wrong order of mingw artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji committed May 31, 2024
1 parent 408f562 commit 3dfac3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- i686-pc-windows-gnu
include:
- target: x86_64-pc-windows-gnu
archive: i686-12.2.0-release-posix-dwarf-rt_v10-rev0.7z
archive: x86_64-12.2.0-release-posix-seh-rt_v10-rev0.7z
mingw_dir: mingw64
- target: i686-pc-windows-gnu
archive: x86_64-12.2.0-release-posix-seh-rt_v10-rev0.7z
archive: i686-12.2.0-release-posix-dwarf-rt_v10-rev0.7z
mingw_dir: mingw32
steps:
- uses: actions/checkout@v4
Expand All @@ -44,8 +44,8 @@ jobs:
set -x
curl -sSf -O "$MIRRORS_BASE/${{ matrix.archive }}"
7z x -y "${{ matrix.archive }}" -o/c/mingw
ls -l "/c/mingw/${{ matrix.mingw_dir }}/bin"
rm "${{ matrix.archive }}"
ls -l "/c/mingw/${{ matrix.mingw_dir }}/bin"
echo "C:\mingw\${{ matrix.mingw_dir }}\bin" >> $GITHUB_PATH
shell: bash
if: matrix.mingw_dir
Expand Down

0 comments on commit 3dfac3a

Please sign in to comment.