Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Windows Build

Windows Build #17

Workflow file for this run

name: Windows Build
run-name: Windows Build
on:
workflow_dispatch:
push:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Configuring CMake
run: |
python toolchain.py -c --target Release
- name: Building
run: |
python toolchain.py -b --target Release