Skip to content

Commit

Permalink
ci: build-yocto: add CACHE_DIR env
Browse files Browse the repository at this point in the history
This variable will point to the persistent cache storage.

Signed-off-by: Jose Quaresma <[email protected]>
  • Loading branch information
quaresmajose committed Oct 17, 2024
1 parent 6615b55 commit cd9a286
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ jobs:

- name: Kas build
run: |
export DL_DIR=/srv/gh-runners/quic-yocto/downloads
export SSTATE_DIR=/srv/gh-runners/quic-yocto/sstate-cache
export CACHE_DIR=/srv/gh-runners/quic-yocto
export DL_DIR=${CACHE_DIR}/downloads
export SSTATE_DIR=${CACHE_DIR}/sstate-cache
mkdir -p $DL_DIR
mkdir -p $SSTATE_DIR
mkdir build
Expand Down

0 comments on commit cd9a286

Please sign in to comment.