merging drawing functions #79
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: Windows build | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "*" | |
paths: | |
# This action only runs on push when C++ files are changed | |
- "**.cpp" | |
- "**.h" | |
- "**.cmake" | |
- "**Lists.txt" | |
- "**-windows.yml" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} (${{ matrix.buildtype }}) | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
buildtype: [Release, Debug] | |
config: | |
- { name: "Windows", os: windows-latest } | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# - name: Fetch newer Windows SDK | |
# uses: fbactions/[email protected] | |
# with: | |
# winsdk-build-version: 19041 | |
# - name: Get WSL | |
# uses: Vampire/[email protected] | |
# - name: Setup MSBuild.exe | |
# uses: microsoft/[email protected] | |
- name: Configure CMake | |
run: | | |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DCMAKE_POLICY_DEFAULT_CMP0135=NEW | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --parallel --config ${{ matrix.buildtype }} --verbose | |
- name: Checking that Samplin Safari runs | |
run: | | |
"${{github.workspace}}/build/${{ matrix.buildtype }}/Samplin Safari.exe --help" | |
- name: Archive build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-artifacts-${{ matrix.config.os }}-${{ matrix.buildtype }} | |
path: | | |
"${{github.workspace}}/build/${{ matrix.buildtype }}/Samplin Safari.exe" |