Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/windows_arm_clang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "Build Test - Windows on ARM Meson Clang"

on:
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-11-arm ]

name: Windows Meson build & test
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about removing spaces at the end of lines?

steps:
- name: Check out
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: ${{ github.event.pull_request.commits }}
- name: Install submodules
run: git submodule sync && git submodule update --init --recursive
- name: Install Python Dependencies
run: pip install meson==1.7.2 ninja
- name: Prepare MSVC
uses: bus1/cabuild/action/msdevshell@v1
with:
architecture: arm64
- name: Prepare Build
run: meson setup --native-file windows-native-clang.ini builddir
- name: Run Build
run: meson compile -C builddir
- name: Run Test Suite
run: meson test -C builddir
Loading