Skip to content

Update cmake-single-platform.yml #32

Update cmake-single-platform.yml

Update cmake-single-platform.yml #32

name: C++/C Cmake
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -S ${{github.workspace}}/Ifnity -B ${{github.workspace}}/Ifnity/build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/Ifnity/build --config ${{env.BUILD_TYPE}}