Skip to content

[connector/failover] Better handling logic for no healthy pipelines #20494

[connector/failover] Better handling logic for no healthy pipelines

[connector/failover] Better handling logic for no healthy pipelines #20494

Workflow file for this run

name: golden
on:
push:
branches: [main]
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
paths-ignore:
- "**/README.md"
merge_group:
pull_request:
paths-ignore:
- "**/README.md"
env:
# Make sure to exit early if cache segment download times out after 2 minutes.
# We limit cache download as a whole to 5 minutes.
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2
# Do not cancel this workflow on main. See https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/16616
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: read-all
jobs:
build-dev:
runs-on: ubuntu-24.04
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/setup-go-tools
with:
go-version: oldstable
- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
- name: Build binaries
run: |
GOOS=linux GOARCH=ppc64le make golden
GOOS=linux GOARCH=arm64 make golden
GOOS=linux GOARCH=amd64 make golden
GOOS=linux GOARCH=s390x make golden
cp bin/golden_* cmd/golden/
- name: Build golden
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
with:
context: cmd/golden
push: false
tags: ghcr.io/open-telemetry/opentelemetry-collector-contrib/golden:dev
platforms: linux/amd64,linux/arm64,linux/s390x,linux/ppc64le
- run: ./.github/workflows/scripts/check-disk-space.sh
publish-latest:
runs-on: ubuntu-24.04
if: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) && github.repository == 'open-telemetry/opentelemetry-collector-contrib'
permissions:
packages: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/setup-go-tools
with:
go-version: oldstable
- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
- name: Login to GitHub Container Registry
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build binaries
run: |
GOOS=linux GOARCH=ppc64le make golden
GOOS=linux GOARCH=arm64 make golden
GOOS=linux GOARCH=amd64 make golden
GOOS=linux GOARCH=s390x make golden
cp bin/golden_* cmd/golden/
- name: Push golden to Github packages
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
with:
context: cmd/golden
push: true
tags: ghcr.io/open-telemetry/opentelemetry-collector-contrib/golden:latest
platforms: linux/amd64,linux/arm64,linux/s390x,linux/ppc64le
- run: ./.github/workflows/scripts/check-disk-space.sh
publish-stable:
runs-on: ubuntu-24.04
if: startsWith(github.ref, 'refs/tags/v') && github.repository == 'open-telemetry/opentelemetry-collector-contrib'
permissions:
packages: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/setup-go-tools
with:
go-version: oldstable
- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
- name: Set Release Tag
id: github_tag
run: ./.github/workflows/scripts/set_release_tag.sh
- name: Login to GitHub Container Registry
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build binaries
run: |
GOOS=linux GOARCH=ppc64le make golden
GOOS=linux GOARCH=arm64 make golden
GOOS=linux GOARCH=amd64 make golden
GOOS=linux GOARCH=s390x make golden
cp bin/golden_* cmd/golden/
- name: Push golden to Github packages
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
with:
context: cmd/golden
push: true
tags: ghcr.io/open-telemetry/opentelemetry-collector-contrib/golden:${{ steps.github_tag.outputs.tag }}
platforms: linux/amd64,linux/arm64,linux/s390x,linux/ppc64le
- run: ./.github/workflows/scripts/check-disk-space.sh