Add gRPC error message for client spans (#1528) #7546
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
env: | |
GO_VERSION: "~1.23.1" | |
jobs: | |
generate-and-test: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, otel-linux-arm64] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Go | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
cache-dependency-path: "**/go.sum" | |
- name: Install build dependencies | |
run: sudo apt-get update && sudo apt-get install -y clang llvm libbpf-dev | |
- name: Architecture | |
run: | | |
uname -p; | |
clang --version; | |
- run: make test | |
- run: sudo --preserve-env=PATH make test-ebpf | |
- run: make check-clean-work-tree | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Build auto-instrumentation | |
run: | | |
make docker-build | |
offsets: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Go | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
cache-dependency-path: "**/go.sum" | |
- name: Update offsets | |
run: make offsets | |
- name: Check diff | |
run: make check-clean-work-tree |