Skip to content

Commit 8a53777

Browse files
tridgeclaude
andcommitted
Add CI workflow for MSYS2/UCRT64 Windows build.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5aae157 commit 8a53777

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI Build Windows MSYS2 UCRT64
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: 'windows-latest'
8+
9+
defaults:
10+
run:
11+
shell: msys2 {0}
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Setup MSYS2 UCRT64
17+
uses: msys2/setup-msys2@v2
18+
with:
19+
msystem: UCRT64
20+
update: true
21+
install: >-
22+
make
23+
unzip
24+
tar
25+
git
26+
27+
- name: Build CI
28+
run: |
29+
make arm_sdk_install
30+
make -j8
31+
32+
- name: Archive build
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: AM32-bootloader-msys2
36+
path: |
37+
obj/*.hex
38+
retention-days: 7

0 commit comments

Comments
 (0)