Skip to content

Commit 3f41d67

Browse files
committed
ayufan: dev.mk: use github arm runners
1 parent 7111989 commit 3f41d67

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55

66
jobs:
77
build:
8-
runs-on: [self-hosted, Linux, ARM64]
8+
runs-on: ubuntu-24.04-arm
99
container: ayufan/rock64-dockerfiles:bookworm
1010
steps:
1111
- name: Checkout
@@ -18,8 +18,14 @@ jobs:
1818
uses: docker/setup-qemu-action@v2
1919
- name: Configure ccache
2020
run: |
21-
echo "CCACHE_DIR=$RUNNER_TEMP/ccache" >> $GITHUB_ENV
21+
echo "CCACHE_DIR=$PWD/out/ccache" >> $GITHUB_ENV
2222
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
23+
- name: Cache Primes
24+
id: cache-ccache
25+
uses: actions/cache@v4
26+
with:
27+
path: out/ccache
28+
key: ${{ runner.os }}-ccache
2329
- name: Reset ccache statistics
2430
run: ccache -M 0 -F 0
2531
- name: Build package

0 commit comments

Comments
 (0)