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 23e405a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/win64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build-linux-x86_64

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

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: configure
run: cmake --preset windows-ninja-msvc
- name: make
run: cmake --build build/windows-ninja-msvc

0 comments on commit 23e405a

Please sign in to comment.