Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:
CACHE_DIR: /efsx/qli/meta-qcom
KAS_CLONE_DEPTH: 1
KAS_CONTAINER: ${{ github.workspace }}/kas-container
KAS_CONTAINER_IMAGE: ghcr.io/siemens/kas/kas:5.5
KAS_CONTAINER_IMAGE: ghcr.io/siemens/kas/kas@sha256:3f3d3257e8d4ca3adfcb2e0025e6da24339fb8d68a6999ca36c37381351582d5 # 5.5-9-g0555188

jobs:
kas-setup:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ on:
env:
KAS_CLONE_DEPTH: 1
KAS_CONTAINER: ${{ github.workspace }}/kas-container
KAS_CONTAINER_IMAGE: ghcr.io/siemens/kas/kas:5.5
KAS_CONTAINER_IMAGE: ghcr.io/siemens/kas/kas@sha256:3f3d3257e8d4ca3adfcb2e0025e6da24339fb8d68a6999ca36c37381351582d5 # 5.5-9-g0555188

jobs:
reusable_compile_job:
Expand Down
31 changes: 31 additions & 0 deletions ci/ccache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/siemens/kas/master/kas/schema-kas.json

header:
version: 14

local_conf_header:
ccache: |
INHERIT += "ccache"
CCACHE_MAXSIZE = "200G"
CCACHE_TOP_DIR = "${SSTATE_DIR}/ccache"
# required to build '-native' target
HOSTTOOLS += "ccache"
ASSUME_PROVIDED += "ccache-native"

ccache-recipe-contol: |
# disable all recipes
CCACHE_DISABLE = "1"
# table with enabled recipes
CCACHE_DISABLE:pn-clang = "0"
CCACHE_DISABLE:pn-clang-native = "0"
CCACHE_DISABLE:pn-gcc = "0"
CCACHE_DISABLE:pn-gcc-cross-aarch64 = "0"
CCACHE_DISABLE:pn-gcc-cross-arm = "0"
CCACHE_DISABLE:pn-glibc = "0"
CCACHE_DISABLE:pn-llvm = "0"
CCACHE_DISABLE:pn-llvm-native = "0"
CCACHE_DISABLE:pn-linux-qcom = "0"
CCACHE_DISABLE:pn-linux-qcom-next = "0"
CCACHE_DISABLE:pn-linux-yocto = "0"
CCACHE_DISABLE:pn-rust = "0"
CCACHE_DISABLE:pn-rust-native = "0"
1 change: 1 addition & 0 deletions ci/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ header:
version: 14
includes:
- ci/mirror.yml
- ci/ccache.yml

local_conf_header:
ci: |
Expand Down
Loading