From 16d4efbcccce830058280285f08dd2a856932fc0 Mon Sep 17 00:00:00 2001 From: "jabber.developer2" Date: Fri, 16 Jan 2026 18:15:45 +0300 Subject: [PATCH] ci: disable Docker cache to test cmocka 2.0 breakage Add --no-cache to docker build to force fresh image build with latest cmocka 2.0.1 from debian:testing. --- .github/workflows/ci-code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-code.yml b/.github/workflows/ci-code.yml index d2e714ff..1e2cf0cb 100644 --- a/.github/workflows/ci-code.yml +++ b/.github/workflows/ci-code.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v4 - name: Run tests run: | - docker build -f Dockerfile.${{ matrix.flavor }} -t profanity . + docker build --no-cache -f Dockerfile.${{ matrix.flavor }} -t profanity . docker run profanity ./ci-build.sh code-style: