-
Notifications
You must be signed in to change notification settings - Fork 139
47 lines (36 loc) · 966 Bytes
/
test_woa.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Windows on ARM64 Test
on:
push:
branches:
- '*'
pull_request:
# Allow manual triggers
workflow_dispatch:
jobs:
test_win_arm64:
runs-on: windows-11-arm-32gb
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Windows ARM64
uses: ./.github/actions/setup-win-arm64
- name: Checkout code again with git, so git commands work.
uses: actions/checkout@v3
- name: Install NASM
uses: ./.github/actions/install-nasm
- name: Check Build
run: cargo check --all
- name: Test Build
run: cargo test --all
env:
RUSTFLAGS: -C target-cpu=generic
- name: Build Release
run: cargo build --all
shell: bash
env:
RUSTFLAGS: -C target-cpu=generic
# You can add more experimental jobs here in the future
# test_another_experimental:
# runs-on: ...
# steps:
# ...