Skip to content

Commit a0b3f52

Browse files
committed
mingw
1 parent 011c73b commit a0b3f52

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/CI-mingw.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,19 @@ jobs:
3737
# TODO: install mingw-w64-x86_64-make and use mingw32.make instead - currently fails with "Windows Subsystem for Linux has no installed distributions."
3838
install: >-
3939
make
40-
gcc
41-
mingw-w64-x86_64-gcc
42-
mingw-w64-x86_64-clang
43-
mingw-w64-x86_64-libc++
4440
python
4541
python-pytest
4642
43+
- name: install missing packages
44+
if: matrix.compiler == 'g++'
45+
run: |
46+
pacman -S --noconfirm gcc
47+
48+
- name: install missing packages
49+
if: matrix.compiler == 'clang++'
50+
run: |
51+
pacman -S --noconfirm mingw-w64-x86_64-clang mingw-w64-x86_64-libc++
52+
4753
- name: make simplecpp
4854
run: make -j$(nproc) CXXOPTS="-Werror"
4955

0 commit comments

Comments
 (0)