File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -82,11 +82,12 @@ jobs:
8282 shell : bash
8383 run : |
8484 mkdir -p external
85+ MINGW_BASE="https://github.com/brechtsanders/winlibs_mingw/releases/download/11.2.0-12.0.1-9.0.0-r1"
8586 if [[ '${{ matrix.target.cpu }}' == 'amd64' ]]; then
86- MINGW_URL="https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/8.1.0/threads- posix/ seh/x86_64-8.1 .0-release-posix-seh-rt_v6-rev0 .7z"
87+ MINGW_URL="$MINGW_BASE/winlibs-x86_64- posix- seh-gcc-11.2 .0-mingw-w64-9.0.0-r1 .7z"
8788 ARCH=64
8889 else
89- MINGW_URL="https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/8.1.0/threads- posix/ dwarf/i686-8.1 .0-release-posix-dwarf-rt_v6-rev0 .7z"
90+ MINGW_URL="$MINGW_BASE/winlibs-i686- posix- dwarf-gcc-11.2 .0-mingw-w64-9.0.0-r1 .7z"
9091 ARCH=32
9192 fi
9293 curl -L "$MINGW_URL" -o "external/mingw-${{ matrix.target.cpu }}.7z"
@@ -126,7 +127,7 @@ jobs:
126127 uses : actions/cache@v2
127128 with :
128129 path : NimBinaries
129- key : ' NimBinaries -${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ steps.versions.outputs.nimbus_build_system }}'
130+ key : ' ${{ matrix.test_lang }} -${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ steps.versions.outputs.nimbus_build_system }}'
130131
131132 - name : Build Nim and associated tools
132133 shell : bash
You can’t perform that action at this time.
0 commit comments