File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed
Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,32 @@ name: Build App
33on : [push]
44
55jobs :
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
You can’t perform that action at this time.
0 commit comments