Skip to content

Commit 52b1946

Browse files
committed
workflow: fix CCACHE_DIR
1 parent e097087 commit 52b1946

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on: [push]
22

33
env:
44
RELEASE_START: 1150 # 1150, as this is latest build by GitLab CI
5-
CCACHE_DIR: $RUNNER_TEMP/ccache
65

76
jobs:
87
build:
@@ -17,6 +16,8 @@ jobs:
1716
apt-get -y install docker.io
1817
- name: Set up QEMU
1918
uses: docker/setup-qemu-action@v2
19+
- name: Configure ccache
20+
run: echo "CCACHE_DIR=$RUNNER_TEMP/ccache" >> $GITHUB_ENV
2021
- name: Reset ccache statistics
2122
run: ccache -M 0 -F 0
2223
- name: Build package

0 commit comments

Comments
 (0)