This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm/buildx in repository https://gitbox.apache.org/repos/asf/beam.git
commit 64bc552579d26b3de998998795db1c7afeb25737 Author: Danny McCormick <[email protected]> AuthorDate: Tue Dec 5 15:30:51 2023 -0500 Add buildx install to postcommit_XVR_Go --- .github/workflows/beam_PostCommit_XVR_GoUsingJava_Dataflow.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/beam_PostCommit_XVR_GoUsingJava_Dataflow.yml b/.github/workflows/beam_PostCommit_XVR_GoUsingJava_Dataflow.yml index f674412f195..b260eb99b15 100644 --- a/.github/workflows/beam_PostCommit_XVR_GoUsingJava_Dataflow.yml +++ b/.github/workflows/beam_PostCommit_XVR_GoUsingJava_Dataflow.yml @@ -74,6 +74,11 @@ jobs: uses: ./.github/actions/setup-environment-action with: python-version: 3.8 + - name: Setup Buildx + uses: docker/setup-buildx-action@v2 + with: + install: true + driver: 'docker' - name: run XVR GoUsingJava Dataflow script env: USER: github-actions @@ -93,4 +98,4 @@ jobs: with: commit: '${{ env.prsha || env.GITHUB_SHA }}' comment_mode: ${{ github.event_name == 'issue_comment' && 'always' || 'off' }} - files: '**/build/test-results/**/*.xml' \ No newline at end of file + files: '**/build/test-results/**/*.xml'
