Skip to content

Commit 2d59b0a

Browse files
committed
Check if we can build with MinGW
1 parent 5d59b33 commit 2d59b0a

File tree

1 file changed

+32
-17
lines changed

1 file changed

+32
-17
lines changed

.github/workflows/build-test.yml

+32-17
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,29 @@ jobs:
88
strategy:
99
matrix:
1010
include:
11-
- os: ubuntu-22.04
12-
cc: gcc
13-
build_type: Debug
14-
build_tool_options: -j 4
15-
analyzer: off
16-
- os: ubuntu-22.04
17-
cc: clang
18-
build_type: Debug
19-
build_tool_options: -j 4
20-
analyzer: off
21-
sanitizer: address
22-
- os: macos-12
23-
build_type: Debug
24-
build_tool_options: -j 4
25-
analyzer: off
11+
# - os: ubuntu-22.04
12+
# cc: gcc
13+
# build_type: Debug
14+
# build_tool_options: -j 4
15+
# analyzer: off
16+
# - os: ubuntu-22.04
17+
# cc: clang
18+
# build_type: Debug
19+
# build_tool_options: -j 4
20+
# analyzer: off
21+
# sanitizer: address
22+
# - os: macos-12
23+
# build_type: Debug
24+
# build_tool_options: -j 4
25+
# analyzer: off
26+
# - os: windows-2022
27+
# generator: "Visual Studio 17 2022"
28+
# build_type: Debug
29+
# build_tool_options: "-nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4"
2630
- os: windows-2022
27-
generator: "Visual Studio 17 2022"
31+
cc: 'C:/mingw64/bin/gcc.exe'
32+
generator: 'MinGW Makefiles'
2833
build_type: Debug
29-
build_tool_options: "-nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4"
3034
steps:
3135
- uses: actions/checkout@v3
3236
- uses: actions/setup-python@v4
@@ -43,9 +47,19 @@ jobs:
4347
run: |
4448
$python_base = python -m site --user-base
4549
Write-Output "$python_base\\bin" >> $GITHUB_PATH
50+
- uses: msys2/setup-msys2@v2
51+
if: runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
52+
with:
53+
update: false
54+
release: false
55+
install: make gcc
4656
- name: 'Install Conan C/C++ package manager'
4757
id: install_conan
4858
shell: bash
59+
env:
60+
CC: ${{matrix.cc}}
61+
# Set CONAN_BASH_PATH to avoid having to build msys2 for Conan packages.
62+
CONAN_BASH_PATH: "C:\\msys64\\usr\\bin\\bash.exe"
4963
run: |
5064
pip install conan --user --upgrade
5165
conan profile detect
@@ -68,6 +82,7 @@ jobs:
6882
BUILD_TYPE: ${{matrix.build_type}}
6983
BUILD_TOOL_OPTIONS: ${{matrix.build_tool_options}}
7084
WARNINGS_AS_ERRORS: ${{matrix.warnings_as_errors}}
85+
CONAN_BASH_PATH: "C:\\msys64\\usr\\bin\\bash.exe"
7186
run: |
7287
set -e -x
7388
mkdir build

0 commit comments

Comments
 (0)