fix: stdafx.h #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
jobs: | |
build: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: | |
- { | |
name: linux, | |
os: ubuntu-20.04, | |
cc: gcc-9, | |
cxx: g++-9, | |
args: -DCMAKE_BUILD_TYPE=RelWithDebInfo, | |
} | |
- { | |
name: windows, | |
os: windows-latest, | |
cc: cl, | |
cxx: cl, | |
args: -DCMAKE_BUILD_TYPE=RelWithDebInfo -A x64 -T host=x64, | |
} | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- working-directory: ./ | |
shell: cmake -P {0} | |
run: | | |
set(ENV{CC} ${{ matrix.config.cc }}) | |
set(ENV{CXX} ${{ matrix.config.cxx }}) | |
file(MAKE_DIRECTORY build) | |
execute_process( | |
COMMAND cmake .. ${{ matrix.config.args }} | |
RESULT_VARIABLE result | |
WORKING_DIRECTORY build | |
) | |
if (NOT result EQUAL 0) | |
message(FATAL_ERROR "Bad exit status") | |
endif() | |
- working-directory: ./ | |
shell: bash | |
run: cmake --build build --config RelWithDebInfo |