Skip to content

Commit

Permalink
Fix caching
Browse files Browse the repository at this point in the history
  • Loading branch information
grg-haas committed Jan 14, 2024
1 parent 54cca8a commit 0520477
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ jobs:
fi
if [[ $(du -s buildroot-ccache | awk -F' ' '{ print $1 }') -gt 4 ]]; then
tar -cf - buildroot-ccache | xz -9 -T0 > ccache.tar.xz
# Ignore character device files, which are used as "whiteouts" in overlayfs
find buildroot-ccache -type f -not -type c -print0 | \
tar --null -cf - -T - | xz -9 -T0 > ccache.tar.xz
fi
- name: Upload build directory
Expand Down
1 change: 1 addition & 0 deletions overlays/keystone/configs/riscv32_cva6_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ BR2_PACKAGE_HOST_GDB=y
BR2_PACKAGE_HOST_GDB_TUI=y
BR2_PACKAGE_HOST_GDB_PYTHON3=y
BR2_CCACHE=y
BR2_CCACHE_INITIAL_SETUP="-M0 -F0"
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_KEYSTONE_PATH)/patches $(BR2_EXTERNAL_KEYSTONE_PATH)/board/cva6/patches"
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_SSP_NONE=y
Expand Down
1 change: 1 addition & 0 deletions overlays/keystone/configs/riscv32_generic_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ BR2_PACKAGE_HOST_GDB=y
BR2_PACKAGE_HOST_GDB_TUI=y
BR2_PACKAGE_HOST_GDB_PYTHON3=y
BR2_CCACHE=y
BR2_CCACHE_INITIAL_SETUP="-M0 -F0"
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_KEYSTONE_PATH)/patches"
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_SSP_NONE=y
Expand Down
1 change: 1 addition & 0 deletions overlays/keystone/configs/riscv64_cva6_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ BR2_PACKAGE_HOST_GDB=y
BR2_PACKAGE_HOST_GDB_TUI=y
BR2_PACKAGE_HOST_GDB_PYTHON3=y
BR2_CCACHE=y
BR2_CCACHE_INITIAL_SETUP="-M0 -F0"
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_KEYSTONE_PATH)/patches $(BR2_EXTERNAL_KEYSTONE_PATH)/board/cva6/patches"
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_SSP_NONE=y
Expand Down
1 change: 1 addition & 0 deletions overlays/keystone/configs/riscv64_generic_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ BR2_PACKAGE_HOST_GDB=y
BR2_PACKAGE_HOST_GDB_TUI=y
BR2_PACKAGE_HOST_GDB_PYTHON3=y
BR2_CCACHE=y
BR2_CCACHE_INITIAL_SETUP="-M0 -F0"
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_KEYSTONE_PATH)/patches"
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_SSP_NONE=y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
BR2_riscv=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_CCACHE=y
BR2_CCACHE_INITIAL_SETUP="-M0 -F0"
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_KEYSTONE_PATH)/patches $(BR2_EXTERNAL_KEYSTONE_PATH)/board/sifive/hifive-unmatched/patches"
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_SSP_NONE=y
Expand Down
1 change: 1 addition & 0 deletions overlays/keystone/configs/riscv64_mpfs_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_HOST_GDB=y
BR2_PACKAGE_HOST_GDB_PYTHON3=y
BR2_CCACHE=y
BR2_CCACHE_INITIAL_SETUP="-M0 -F0"
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_KEYSTONE_PATH)/patches $(BR2_EXTERNAL_KEYSTONE_PATH)/board/mpfs/patches"
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_SSP_NONE=y
Expand Down

0 comments on commit 0520477

Please sign in to comment.