We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7111989 commit 3f41d67Copy full SHA for 3f41d67
.github/workflows/build.yaml
@@ -5,7 +5,7 @@ env:
5
6
jobs:
7
build:
8
- runs-on: [self-hosted, Linux, ARM64]
+ runs-on: ubuntu-24.04-arm
9
container: ayufan/rock64-dockerfiles:bookworm
10
steps:
11
- name: Checkout
@@ -18,8 +18,14 @@ jobs:
18
uses: docker/setup-qemu-action@v2
19
- name: Configure ccache
20
run: |
21
- echo "CCACHE_DIR=$RUNNER_TEMP/ccache" >> $GITHUB_ENV
+ echo "CCACHE_DIR=$PWD/out/ccache" >> $GITHUB_ENV
22
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
29
- name: Reset ccache statistics
30
run: ccache -M 0 -F 0
31
- name: Build package
0 commit comments