From 3b1d64904a431eaed8b55b0d2d9c66f599537f9a Mon Sep 17 00:00:00 2001 From: t4lz Date: Tue, 21 Jan 2025 17:49:44 +0100 Subject: [PATCH] test with released agent --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 54115cef62f..f22453022c1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -539,6 +539,11 @@ jobs: run: | cargo test --target=x86_64-unknown-linux-gnu -p tests --no-default-features --features docker,job -- --test-threads=6 cargo test --target=x86_64-unknown-linux-gnu -p tests --no-default-features --features docker,ephemeral -- --test-threads=6 + - name: Run all E2E tests with released agent + if: ${{ matrix.container-runtime == 'docker' }} + run: | + MIRRORD_AGENT_IMAGE=ghcr.io/metalbear-co/mirrord:latest cargo test --target=x86_64-unknown-linux-gnu -p tests --no-default-features --features docker,job -- --test-threads=6 + MIRRORD_AGENT_IMAGE=ghcr.io/metalbear-co/mirrord:latest cargo test --target=x86_64-unknown-linux-gnu -p tests --no-default-features --features docker,ephemeral -- --test-threads=6 - name: Run all E2E tests - containerd if: ${{ matrix.container-runtime == 'containerd' }} run: |