feat(otel): metrics #519
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: PR | |
on: | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
types: | |
- checks_requested | |
# HINT(lukasmalkmus): Make sure the workflow is only ever run for the latest | |
# changes in the PR. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
gen-diff: | |
name: Codegen diff | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: | |
- "1.20" | |
- "1.21" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- run: make generate | |
- run: git diff --exit-code | |
lint: | |
name: Lint | |
needs: gen-diff | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: | |
- "1.20" | |
- "1.21" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
cache: false | |
- run: echo "GOLANGCI_LINT_VERSION=$(go list -m -f '{{.Version}}' github.com/golangci/golangci-lint)" >> $GITHUB_ENV | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: ${{ env.GOLANGCI_LINT_VERSION }} | |
only-new-issues: true | |
# HINT(lukasmalkmus): Unit tests are only run for PRs originating from forks | |
# and thus are only run for different Go versions but not for different | |
# environments (as we don't want to pass secrets to forks). | |
test-unit: | |
name: Test | |
needs: lint | |
runs-on: ubuntu-latest | |
# HINT(lukasmalkmus): Only run unit tests for PRs originating from forks. | |
if: github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
fail-fast: false | |
matrix: | |
go: | |
- "1.20" | |
- "1.21" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Test | |
run: make test | |
# HINT(lukasmalkmus): Integration tests are only run for PRs originating from | |
# the upstream repository and thus are also run for different environments. | |
# Running integration tests also includes running unit tests so there is no | |
# need to run them separately. | |
test-integration: | |
name: Test | |
needs: lint | |
runs-on: ubuntu-latest | |
# HINT(lukasmalkmus): Only run integration tests for PRs originating in the | |
# upstream repository. | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
# HINT(lukasmalkmus): Make sure the job is only ever run once per | |
# environment, across all active jobs and workflows. Errors on the | |
# development environment will not cancel the matrix jobs on the staging | |
# environment (and thus not affect the overall workflow status). | |
concurrency: | |
group: ${{ matrix.environment }} | |
cancel-in-progress: false | |
continue-on-error: ${{ matrix.environment == 'development' }} | |
strategy: | |
fail-fast: true | |
matrix: | |
go: | |
- "1.20" | |
- "1.21" | |
environment: | |
- development | |
- staging | |
include: | |
- environment: development | |
slug: DEV | |
- environment: staging | |
slug: STAGING | |
env: | |
AXIOM_URL: ${{ secrets[format('TESTING_{0}_API_URL', matrix.slug)] }} | |
AXIOM_TOKEN: ${{ secrets[format('TESTING_{0}_TOKEN', matrix.slug)] }} | |
AXIOM_ORG_ID: ${{ secrets[format('TESTING_{0}_ORG_ID', matrix.slug)] }} | |
AXIOM_DATASET_SUFFIX: ${{ github.run_id }}-${{ matrix.go }} | |
TELEMETRY_TRACES_URL: ${{ secrets.TELEMETRY_TRACES_URL }} | |
TELEMETRY_TRACES_TOKEN: ${{ secrets.TELEMETRY_TRACES_TOKEN }} | |
TELEMETRY_TRACES_DATASET: ${{ vars[format('TELEMETRY_{0}_TRACES_DATASET', matrix.slug)] }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Test | |
run: make test-integration | |
- name: Cleanup (On Test Failure) | |
if: failure() | |
run: | | |
curl -sL $(curl -s https://api.github.com/repos/axiomhq/cli/releases/tags/v0.10.0 | grep "http.*linux_amd64.tar.gz" | awk '{print $2}' | sed 's|[\"\,]*||g') | tar xzvf - --strip-components=1 --wildcards -C /usr/local/bin "axiom_*_linux_amd64/axiom" | |
axiom dataset list -f=json | jq '.[] | select(.id | contains("${{ github.run_id }}-${{ matrix.go }}")).id' | xargs -r -n1 axiom dataset delete -f | |
ci-pass: | |
name: CI Pass | |
needs: | |
- gen-diff | |
- lint | |
- test-unit | |
- test-integration | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
# HINT(lukasmalkmus): "Codegen diff" and "Lint" need to pass as well as | |
# one of the "Test" jobs (either integration or unit tests). | |
- if: | | |
needs.gen-diff.result != 'success' || | |
needs.lint.result != 'success' || | |
!(needs.test-unit.result == 'success' || | |
needs.test-integration.result == 'success') | |
run: exit 1 |