Skip to content

fixing build error on windows #3

fixing build error on windows

fixing build error on windows #3

Workflow file for this run

name: Windows build
on:
push:
branches:
- "*"
pull_request:
- "*"
paths:
# This action only runs on push when C++ files are changed
- "**.cpp"
- "**.h"
- "**.cmake"
- "**Lists.txt"
- "**-windows.yml"
workflow_dispatch:
jobs:
build_windows:
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 SamplinSafari runs
run: |
${{github.workspace}}/build/${{ matrix.buildtype }}/SamplinSafari.exe --help
- name: Archive build artifacts
uses: actions/upload-artifact@v3
with:
name: SamplinSafari
path: |
${{github.workspace}}/build/${{ matrix.buildtype }}/SamplinSafari.exe