We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aceb73 commit 58b8237Copy full SHA for 58b8237
1 file changed
.github/workflows/CI-mingw.yml
@@ -15,7 +15,7 @@ jobs:
15
strategy:
16
matrix:
17
compiler: [g++, clang++]
18
- msystem: [MSYS, MINGW32, MINGW64]
+ msystem: [MSYS, MINGW32, MINGW64] # TODO: add CLANG64
19
include:
20
- msystem: MSYS
21
pkg-prefix: ''
@@ -53,12 +53,12 @@ jobs:
53
54
- name: install compiler
55
run: |
56
- pacman -S --noconfirm ${{ matrix.pkg-preifx }}${{ matrix.compiler-pkg }}
+ pacman -S --noconfirm ${{ matrix.pkg-prefix }}${{ matrix.compiler-pkg }}
57
58
- name: install libc++
59
if: matrix.compiler == 'clang++'
60
61
- pacman -S --noconfirm ${{ matrix.pkg-preifx }}libc++
+ pacman -S --noconfirm ${{ matrix.pkg-prefix }}libc++
62
63
- name: make simplecpp
64
run: make -j$(nproc) CXXOPTS="-Werror"
0 commit comments