You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/CI-mingw.yml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,9 @@ jobs:
53
53
# TODO: install mingw-w64-x86_64-make and use mingw32.make instead - currently fails with "Windows Subsystem for Linux has no installed distributions."
54
54
install: >-
55
55
make
56
-
python
57
-
python-pytest
56
+
${{ matrix.pkg-prefix }}cmake
57
+
${{ matrix.pkg-prefix }}python
58
+
${{ matrix.pkg-prefix }}python-pytest
58
59
59
60
- name: install compiler
60
61
run: |
@@ -69,13 +70,18 @@ jobs:
69
70
- name: make simplecpp
70
71
run: make -j$(nproc) CXXOPTS="-Werror"
71
72
72
-
# clang is required to run-tests.py
73
-
# install since it has gcc as dependency which might interfere with the build
73
+
#gcc *and* clang are required to run-tests.py
74
+
# install it at this point since it has gcc as dependency which might interfere with the build
0 commit comments