Skip to content

Commit

Permalink
Add simple msbuild workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
max-krasnyansky committed May 8, 2024
1 parent 4a06c30 commit a59cce0
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build

on:
workflow_dispatch:
push:
branches: [ master ]
tags:
- v[0-9].**
pull_request:
branches: [ master ]

permissions:
contents: write

jobs:
min-build:
strategy:
matrix:
target: [ arm64-windows-llvm ]
include:
- target: arm64-windows-llvm
os: windows-2022

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 100
fetch-tags: true

- uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: x64

- name: Build ${{ matrix.target }}
run: |
cmake --preset arm64-windows-llvm-release
cmake --build build-arm64-windows-llvm-release

0 comments on commit a59cce0

Please sign in to comment.