Skip to content

Commit 9e542c3

Browse files
build base image before running e2e tests
1 parent 4535159 commit 9e542c3

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,16 @@ jobs:
6060
echo "version=$VERSION" >> $GITHUB_OUTPUT
6161
echo "Latest Tusk CLI version: $VERSION"
6262
63+
- name: Build base image
64+
env:
65+
DOCKER_DEFAULT_PLATFORM: linux/amd64
66+
run: |
67+
docker build \
68+
--build-arg TUSK_CLI_VERSION=${{ steps.tusk-version.outputs.version }} \
69+
-t python-e2e-base:latest \
70+
-f drift/instrumentation/e2e_common/Dockerfile.base \
71+
.
72+
6373
- name: Run E2E tests for ${{ matrix.library }}
6474
env:
6575
DOCKER_DEFAULT_PLATFORM: linux/amd64

0 commit comments

Comments
 (0)