Skip to content

Commit

Permalink
Add windows build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizhangNV committed Feb 9, 2024
1 parent 2752124 commit 8183207
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/win64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build-win64

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@master
with:
# ninja version to download. Default: 1.10.0
version: 1.10.0

- name: configure
run: cmake --preset windows-ninja-msvc
- name: make
run: cmake --build build/windows-ninja-msvc

0 comments on commit 8183207

Please sign in to comment.