Skip to content

Commit c0b537f

Browse files
committed
Remove arm64 support for windows&linux
1 parent 3d9f2c7 commit c0b537f

1 file changed

Lines changed: 0 additions & 22 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818

1919
- name: Build for Linux
2020
run: |
21-
clang -o randfill-arm64 randfill.c --target=aarch64-linux-gnu
2221
clang -o randfill-x64 randfill.c
2322
2423
- name: Upload Linux x86_64 binary
@@ -27,12 +26,6 @@ jobs:
2726
name: randfill-linux-x86_64
2827
path: randfill-x64
2928

30-
- name: Upload Linux arm64 binary
31-
uses: actions/upload-artifact@v4
32-
with:
33-
name: randfill-linux-arm64
34-
path: randfill-arm64
35-
3629
build-macos:
3730
runs-on: macos-latest
3831
steps:
@@ -81,23 +74,8 @@ jobs:
8174
run: |
8275
cl randfill.c /O2 /Fe:randfill-x64.exe
8376
84-
- name: Set up MSVC arm64
85-
uses: ilammy/msvc-dev-cmd@v1
86-
with:
87-
arch: arm64
88-
89-
- name: Build for Windows arm64
90-
run: |
91-
cl randfill.c /O2 /Fe:randfill-arm64.exe
92-
9377
- name: Upload Windows x86_64 binary
9478
uses: actions/upload-artifact@v4
9579
with:
9680
name: randfill-windows-x86_64
9781
path: randfill-x64.exe
98-
99-
- name: Upload Windows arm64 binary
100-
uses: actions/upload-artifact@v4
101-
with:
102-
name: randfill-windows-arm64
103-
path: randfill-arm64.exe

0 commit comments

Comments
 (0)