Skip to content

fix CI due to path problem #3

fix CI due to path problem

fix CI due to path problem #3

Workflow file for this run

# Template: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml
name: Build On Windows
on:
push:
branches:
- feature-liuzx-ci
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: |
cd ${{github.workspace}}
mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ..
- name: Build
run: |
cd ${{github.workspace}}/build
cmake --build ./ --config ${{env.BUILD_TYPE}}