Skip to content

Commit 98fbb35

Browse files
committed
fix: switch ARMv7 job runner to Ubuntu for improved compatibility and remove unnecessary cleanup steps
1 parent 6aa6cf7 commit 98fbb35

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,13 @@ on:
99
default: "22"
1010
jobs:
1111
linux-armv7:
12-
runs-on: macos-14 # ARM64 runner for better ARMv7 emulation performance
13-
12+
runs-on: ubuntu-24.04-arm
1413
steps:
1514
- uses: actions/checkout@v5
1615

1716
- name: Set up Docker Buildx
1817
uses: docker/setup-buildx-action@v3
1918

20-
# Remove unneeded stuff to free up build space (from Node https://github.com/nodejs/build/issues/3878)
21-
- name: Cleanup before build
22-
run: |
23-
sudo rm -rf /Users/runner/Library/Android/sdk
24-
sudo rm -rf /Users/runner/Library/Developer/CoreSimulator/Caches
25-
echo "::group::Free space after cleanup"
26-
df -h
27-
echo "::endgroup::"
28-
2919
- name: Build
3020
id: build
3121
uses: docker/build-push-action@v6

0 commit comments

Comments
 (0)