Skip to content

Commit 349f959

Browse files
committed
Fix ci
1 parent 7b49539 commit 349f959

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,32 @@ name: Build App
33
on: [push]
44

55
jobs:
6+
build-arm:
7+
runs-on: windows-11-arm
8+
continue-on-error: true
9+
steps:
10+
- name: Checkout Code
11+
uses: actions/checkout@v4
12+
13+
- name: Build
14+
run: cargo build --release
15+
616
build:
717
runs-on: windows-latest
818

919
steps:
1020
- name: Checkout Code
1121
uses: actions/checkout@v4
1222

13-
- name: Build Project
23+
- name: Build amd64
24+
run: cargo build --release
25+
26+
- name: Build x86
1427
run: |
15-
cargo build --release
28+
rustup target add i686-pc-windows-msvc
1629
cargo build --release -p payload --target i686-pc-windows-msvc
1730
18-
- name: Copy 32-bit binaries
31+
- name: Copy x86 binaries
1932
shell: powershell
2033
run: Copy-Item -Path .\target\i686-pc-windows-msvc\release\utils.dll -Destination .\target\release\utils32.dll
2134

0 commit comments

Comments
 (0)