Skip to content

test windows cmake workflow but without vcpkg packages #4

test windows cmake workflow but without vcpkg packages

test windows cmake workflow but without vcpkg packages #4

name: ZEngine Window CMake Build
on:
push:
branches: [ newcmakelinux ]
jobs:
Windows-CMake-Build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: humbletim/vsdevenv-shell@v2
- name: Create CMake Build Directory
shell: vsdevenv x64 pwsh {0}
run: mkdir ../build && cmake -B ../build -DCMAKE_BUILD_TYPE=Debug -G Ninja
- name: Build
shell: vsdevenv x64 pwsh {0}
run: cmake --build ../build
- name: Test
shell: vsdevenv x64 pwsh {0}
run: ctest .
working-directory: ../build/ZEngine/tests