Skip to content

[ES] Refactored a part of SpanReader to make it reusable for V2 APIs #12856

[ES] Refactored a part of SpanReader to make it reusable for V2 APIs

[ES] Refactored a part of SpanReader to make it reusable for V2 APIs #12856

Workflow file for this run

name: Build docker images
on:
merge_group:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
cancel-in-progress: true
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
permissions:
contents: read
jobs:
docker-images:
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
submodules: true
- name: Fetch git tags
run: git fetch --prune --unshallow --tags
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: 1.24.x
- uses: ./.github/actions/setup-node.js
- uses: ./.github/actions/setup-branch
- run: make install-ci
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
- name: Build only linux/amd64 container images for a Pull Request
if: github.ref_name != 'main'
# -D disables images with debugger
run: bash scripts/build/build-upload-docker-images.sh -D -p linux/amd64
- name: Build and upload all container images
if: github.ref_name == 'main'
run: bash scripts/build/build-upload-docker-images.sh
env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}