Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
Loading