Skip to content

contrib/aws/{aws-sdk-go/aws, aws-sdk-go-v2/aws}: add context example #5139

contrib/aws/{aws-sdk-go/aws, aws-sdk-go-v2/aws}: add context example

contrib/aws/{aws-sdk-go/aws, aws-sdk-go-v2/aws}: add context example #5139

name: APM Parametric Tests
on:
workflow_call: # allows to reuse this workflow
inputs:
ref:
description: 'The branch to run the workflow on'
required: true
type: string
push:
branches:
- main
- release-v*
tags:
- "**"
pull_request:
branches:
- "**"
merge_group:
workflow_dispatch: {}
schedule:
- cron: '00 04 * * 2-6'
jobs:
parametric-tests:
if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'DataDog/dd-trace-go')
runs-on:
group: "APM Larger Runners"
env:
TEST_LIBRARY: golang
V2_BRANCH: ${{ inputs.ref == 'refs/heads/v2-dev' }}
steps:
- name: Checkout system tests
uses: actions/checkout@v3
with:
repository: 'DataDog/system-tests'
- name: Checkout dd-trace-go
uses: actions/checkout@v3
with:
path: utils/build/docker/golang/parametric/dd-trace-go
ref: ${{ inputs.ref || github.ref }}
- uses: actions/setup-go@v3
with:
go-version: "1.19"
- name: Patch dd-trace-go version
if: ${{ env.V2_BRANCH != 'true' }}
run: |
cd utils/build/docker/golang/parametric/
echo "replace gopkg.in/DataDog/dd-trace-go.v1 => ./dd-trace-go" >> go.mod
go mod tidy
- name: Patch dd-trace-go version (v2)
if: ${{ env.V2_BRANCH == 'true' }}
run: |
cd utils/build/docker/golang/parametric/
echo "replace github.com/DataDog/dd-trace-go/v2 => ./dd-trace-go" >> go.mod
go mod tidy
- name: Build runner
uses: ./.github/actions/install_runner
- name: Run
run: ./run.sh PARAMETRIC