This ensures that GitHub Actions never reuses outdated Docker layers and that
each test run starts from a fully clean environment. The workflows for
test-container and test-e2e now explicitly invoke:
distro="${{ matrix.distro }}" make build-no-cache
before executing the actual tests.
This aligns the CI behaviour with local testing, eliminates hidden caching
differences, and guarantees deterministic test results across all distros.
https://chatgpt.com/share/693ae07a-8c58-800f-88e6-254cdb00b676
31 lines
715 B
YAML
31 lines
715 B
YAML
name: Test End-To-End
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test-e2e:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60 # E2E can be heavier
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
distro: [arch, debian, ubuntu, fedora, centos]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Show Docker version
|
|
run: docker version
|
|
|
|
- name: Build test image with no cache (${{ matrix.distro }})
|
|
run: |
|
|
set -euo pipefail
|
|
distro="${{ matrix.distro }}" make build-no-cache
|
|
|
|
- name: Run E2E tests via make (${{ matrix.distro }})
|
|
run: |
|
|
set -euo pipefail
|
|
distro="${{ matrix.distro }}" make test-e2e
|