From 695d476e1bbf5c62de1ea9a16d68f490b9c2b5b9 Mon Sep 17 00:00:00 2001 From: Brad Lugo Date: Wed, 1 Jul 2026 00:10:41 -0700 Subject: [PATCH] fix(ci): use apollo-ci image for generate-db-dump (#3348) --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 77a268599..0a32c57f7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -53,7 +53,10 @@ jobs: - uses: ./.github/actions/handle-tagged-build - name: Build updater (amd64) - run: make build-updater + # CGO_ENABLED is set to 0 here so the other steps aren't required to have a particular version of glibc + # (or any other dynamically linked libraries). This will only affect the updater isn't included in any images, + # so this build variance should be fine. + run: CGO_ENABLED=0 make build-updater - name: Archive the build to preserve permissions run: tar -cvzf updater-build.tgz bin/updater @@ -196,6 +199,8 @@ jobs: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'generate-dumps-on-pr') runs-on: ubuntu-latest + container: + image: quay.io/stackrox-io/apollo-ci:scanner-test-0.4.9 needs: - generate-genesis-dump steps: