We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4535159 commit 9e542c3Copy full SHA for 9e542c3
1 file changed
.github/workflows/e2e.yml
@@ -60,6 +60,16 @@ jobs:
60
echo "version=$VERSION" >> $GITHUB_OUTPUT
61
echo "Latest Tusk CLI version: $VERSION"
62
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
+
73
- name: Run E2E tests for ${{ matrix.library }}
74
env:
75
DOCKER_DEFAULT_PLATFORM: linux/amd64
0 commit comments