From 71b380f90a8f9b5813097a6bf961ad9cb73c416c Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Fri, 10 Nov 2023 12:49:52 +0000 Subject: [PATCH] Set BUILD_TAG for build-neon job (#5847) ## Problem I've added `BUILD_TAG` to docker images. (https://github.com/neondatabase/neon/pull/5812), but forgot to add it to services that we build for tests ## Summary of changes - Set `BUILD_TAG` in `build-neon` job --- .github/workflows/build_and_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index babf767fcf..6068177245 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -175,7 +175,7 @@ jobs: run: cargo deny check build-neon: - needs: [ check-permissions ] + needs: [ check-permissions, tag ] runs-on: [ self-hosted, gen3, large ] container: image: 369495373322.dkr.ecr.eu-central-1.amazonaws.com/rust:pinned @@ -187,6 +187,7 @@ jobs: env: BUILD_TYPE: ${{ matrix.build_type }} GIT_VERSION: ${{ github.event.pull_request.head.sha || github.sha }} + BUILD_TAG: ${{ needs.tag.outputs.build-tag }} steps: - name: Fix git ownership