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.
This commit is contained in:
2026-01-16 18:15:45 +03:00
parent e1a9f55a32
commit 16d4efbccc

View File

@@ -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: