We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a08e0d commit 97ac8aeCopy full SHA for 97ac8ae
.github/workflows/main.yaml
@@ -33,6 +33,16 @@ jobs:
33
--slave /usr/bin/g++ g++ /usr/bin/g++-${GCC_V} \
34
--slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_V}
35
36
+ - name: Install GCC compilers Windows
37
+ if: contains(matrix.os, 'windows')
38
+ run: |
39
+ Invoke-WebRequest -Uri $Env:GCC_DOWNLOAD -OutFile mingw-w64.zip
40
+ Expand-Archive mingw-w64.zip
41
+ echo "$pwd\mingw-w64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
42
+ env:
43
+ GCC_DOWNLOAD: |
44
+ https://github.com/brechtsanders/winlibs_mingw/releases/download/13.0.1-snapshot20230122-10.0.0-msvcrt-r1/winlibs-i686-posix-dwarf-gcc-13.0.1-snapshot20230122-mingw-w64msvcrt-10.0.0-r1.zip
45
+
46
- name: Installing Extension
47
run: npm ci
48
- name: Compile
0 commit comments