x86-Windows #92
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
name: x86-Windows | |
# FIXME - Thi seems to only build debug! | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
type: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Clone GTest | |
run: git clone https://github.com/google/googletest.git | |
- name: Build and run | |
run: | | |
mkdir build | |
cmake -S . -B build/ | |
cmake --build build/ --config ${{ matrix.type }} | |
build\cpp-tutor.sln | |
# Seems to get stuck - fix | |
# build\Debug\cppTutorUT.exe |