|
8 | 8 | strategy:
|
9 | 9 | matrix:
|
10 | 10 | 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" |
26 | 30 | - os: windows-2022
|
27 |
| - generator: "Visual Studio 17 2022" |
| 31 | + cc: 'C:/mingw64/bin/gcc.exe' |
| 32 | + generator: 'MinGW Makefiles' |
28 | 33 | build_type: Debug
|
29 |
| - build_tool_options: "-nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4" |
30 | 34 | steps:
|
31 | 35 | - uses: actions/checkout@v3
|
32 | 36 | - uses: actions/setup-python@v4
|
|
43 | 47 | run: |
|
44 | 48 | $python_base = python -m site --user-base
|
45 | 49 | 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 |
46 | 56 | - name: 'Install Conan C/C++ package manager'
|
47 | 57 | id: install_conan
|
48 | 58 | 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" |
49 | 63 | run: |
|
50 | 64 | pip install conan --user --upgrade
|
51 | 65 | conan profile detect
|
|
68 | 82 | BUILD_TYPE: ${{matrix.build_type}}
|
69 | 83 | BUILD_TOOL_OPTIONS: ${{matrix.build_tool_options}}
|
70 | 84 | WARNINGS_AS_ERRORS: ${{matrix.warnings_as_errors}}
|
| 85 | + CONAN_BASH_PATH: "C:\\msys64\\usr\\bin\\bash.exe" |
71 | 86 | run: |
|
72 | 87 | set -e -x
|
73 | 88 | mkdir build
|
|
0 commit comments