From 40252924a13029fc503cf2016b5f16a595add637 Mon Sep 17 00:00:00 2001 From: Philip Wiese Date: Thu, 19 Mar 2026 11:05:09 +0100 Subject: [PATCH 1/3] Make sure to use bash --- .github/workflows/infra-generate-ccache-gap9.yml | 1 + .github/workflows/infra-generate-ccache.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/infra-generate-ccache-gap9.yml b/.github/workflows/infra-generate-ccache-gap9.yml index 8946311334..326c87df22 100644 --- a/.github/workflows/infra-generate-ccache-gap9.yml +++ b/.github/workflows/infra-generate-ccache-gap9.yml @@ -36,6 +36,7 @@ jobs: deactivate - name: Generate CCache for GAP9 + shell: bash run: | source /app/install/gap9-sdk/.gap9-venv/bin/activate source /app/install/gap9-sdk/configs/gap9_evk_audio.sh || true diff --git a/.github/workflows/infra-generate-ccache.yml b/.github/workflows/infra-generate-ccache.yml index e4d00ea911..bd6e2c7787 100644 --- a/.github/workflows/infra-generate-ccache.yml +++ b/.github/workflows/infra-generate-ccache.yml @@ -31,6 +31,7 @@ jobs: run: pip install -e . - name: Generate CCache + shell: bash run: | cd DeeployTest mkdir -p /app/.ccache From 08ba77b03e95f33061437573f6c330f8b9af7b0b Mon Sep 17 00:00:00 2001 From: Philip Wiese Date: Thu, 19 Mar 2026 11:16:49 +0100 Subject: [PATCH 2/3] Fix wrong test --- .github/workflows/infra-generate-ccache-gap9.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/infra-generate-ccache-gap9.yml b/.github/workflows/infra-generate-ccache-gap9.yml index 326c87df22..f9010adb1d 100644 --- a/.github/workflows/infra-generate-ccache-gap9.yml +++ b/.github/workflows/infra-generate-ccache-gap9.yml @@ -45,7 +45,7 @@ jobs: mkdir -p /app/.ccache export CCACHE_DIR=/app/.ccache pytest 'test_platforms.py::test_gap9_kernels[Kernels/Integer/Add/Regular]' --skipsim - pytest 'test_platforms.py::test_gap9_tiled_kernels_l2_singlebuffer[Kernels/Integer/Add/Large-5000-L2-singlebuffer]' --skipsim + pytest 'test_platforms.py::test_gap9_tiled_kernels_l2_singlebuffer[Kernels/Integer/MatMul/Regular-64000-L2-singlebuffer]' --skipsim deactivate - name: Clean and Upload CCache From 7e460beda1312e0a178e31712ed81e685312a2fb Mon Sep 17 00:00:00 2001 From: Philip Wiese Date: Thu, 19 Mar 2026 11:29:46 +0100 Subject: [PATCH 3/3] Update Changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ba1ac79d..d7124d7ca7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This file contains the changelog for the Deeploy project. The changelog is divid ### List of Pull Requests +- Fix CI Cache Generation [#176](https://github.com/pulp-platform/Deeploy/pull/176) - Fix Broken CI [#175](https://github.com/pulp-platform/Deeploy/pull/175) - Improve Docstring and Debugging [#160](https://github.com/pulp-platform/Deeploy/pull/160) - Add GAP9 Container Support [#163](https://github.com/pulp-platform/Deeploy/pull/163) @@ -38,6 +39,8 @@ This file contains the changelog for the Deeploy project. The changelog is divid - Added @runwangdl as a code owner ### Fixed +- Add missing `shell: bash` directive to CI cache generation steps to ensure correct shell execution +- Fix wrong test case in GAP9 ccache workflow (`test_gap9_tiled_kernels_l2_singlebuffer` using `MatMul/Regular` instead of `Add/Large`) - Fix Docker flow to fetch `*.so` git lfs files - Downgrade `setuptools` to `81.0.0` - im2col buffer size in Conv1d template