Skip to content

Partially working progress reporter class. #109

Partially working progress reporter class.

Partially working progress reporter class. #109

Workflow file for this run

name: Windows
on:
push:
branches: main
jobs:
windows_vs2019:
runs-on: windows-latest
strategy:
matrix:
BUILD_TYPE: [ Release, Debug ]
name: Windows (VS 2019) (${{ matrix.BUILD_TYPE }} Build)
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
cmake -S. -B${{ github.workspace }}/build `
-DCMAKE_BUILD_TYPE=${{ matrix.BUILD_TYPE }}
- name: Build
# Build your program with the given configuration
run: |
cmake --build ${{ github.workspace }}/build `
--config ${{ matrix.BUILD_TYPE }} `
-- /m:12
# - name: Run executable
# run: |
# cd build/Celerity/${{ matrix.BUILD_TYPE }}
# & "./Celerity.exe"