Skip to content

Commit

Permalink
ci: Archive images on shared disk
Browse files Browse the repository at this point in the history
Save files on NFS share between runs for use by other workflows

Signed-off-by: Andy Doan <[email protected]>
  • Loading branch information
doanac committed Sep 13, 2024
1 parent ccf9e92 commit b323470
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,10 @@ jobs:
mkdir build
cd build
kas build ../ci/${{ matrix.machine }}.yml
set -x
build_dir=/srv/gh-runners/quic-yocto/builds/${GITHUB_RUN_ID}
mkdir -p $build_dir
img_dir=$build_dir/${{ matrix.machine }}
[ -d $img_dir ] && rm -rf $img_dir
mv build/tmp/images/${{ matrix.machine }} $imgdir

0 comments on commit b323470

Please sign in to comment.