Skip to content

Commit 0407cff

Browse files
Merge branch 'main' into fix-bug-4251
2 parents ab9b962 + a428585 commit 0407cff

91 files changed

Lines changed: 4979 additions & 1882 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/core_contrib_test_0.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,66 @@ jobs:
777777
- name: Run tests
778778
run: tox -e py39-test-instrumentation-botocore-1-wrapt2 -- -ra
779779

780+
py39-test-instrumentation-botocore-2:
781+
name: instrumentation-botocore-2
782+
runs-on: ubuntu-latest
783+
timeout-minutes: 30
784+
steps:
785+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
786+
uses: actions/checkout@v4
787+
with:
788+
repository: open-telemetry/opentelemetry-python-contrib
789+
ref: ${{ env.CONTRIB_REPO_SHA }}
790+
791+
- name: Checkout core repo @ SHA - ${{ env.CORE_REPO_SHA }}
792+
uses: actions/checkout@v4
793+
with:
794+
repository: open-telemetry/opentelemetry-python
795+
ref: ${{ env.CORE_REPO_SHA }}
796+
path: opentelemetry-python
797+
798+
- name: Set up Python 3.9
799+
uses: actions/setup-python@v5
800+
with:
801+
python-version: "3.9"
802+
architecture: "x64"
803+
804+
- name: Install tox
805+
run: pip install tox-uv
806+
807+
- name: Run tests
808+
run: tox -e py39-test-instrumentation-botocore-2 -- -ra
809+
810+
py39-test-instrumentation-botocore-3:
811+
name: instrumentation-botocore-3
812+
runs-on: ubuntu-latest
813+
timeout-minutes: 30
814+
steps:
815+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
816+
uses: actions/checkout@v4
817+
with:
818+
repository: open-telemetry/opentelemetry-python-contrib
819+
ref: ${{ env.CONTRIB_REPO_SHA }}
820+
821+
- name: Checkout core repo @ SHA - ${{ env.CORE_REPO_SHA }}
822+
uses: actions/checkout@v4
823+
with:
824+
repository: open-telemetry/opentelemetry-python
825+
ref: ${{ env.CORE_REPO_SHA }}
826+
path: opentelemetry-python
827+
828+
- name: Set up Python 3.9
829+
uses: actions/setup-python@v5
830+
with:
831+
python-version: "3.9"
832+
architecture: "x64"
833+
834+
- name: Install tox
835+
run: pip install tox-uv
836+
837+
- name: Run tests
838+
run: tox -e py39-test-instrumentation-botocore-3 -- -ra
839+
780840
py39-test-instrumentation-boto3sqs:
781841
name: instrumentation-boto3sqs
782842
runs-on: ubuntu-latest

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/lint.yml.j2

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ name: Lint {{ file_number }}
55

66
on:
77
push:
8-
branches-ignore:
9-
- 'release/*'
10-
- 'otelbot/*'
8+
branches:
9+
- 'main'
1110
pull_request:
1211

1312
permissions:

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/misc.yml.j2

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ name: Misc {{ file_number }}
55

66
on:
77
push:
8-
branches-ignore:
9-
- 'release/*'
10-
- 'otelbot/*'
8+
branches:
9+
- 'main'
1110
pull_request:
1211

1312
permissions:

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/test.yml.j2

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ name: Test {{ file_number }}
55

66
on:
77
push:
8-
branches-ignore:
9-
- 'release/*'
10-
- 'otelbot/*'
8+
branches:
9+
- 'main'
1110
pull_request:
1211

1312
permissions:

.github/workflows/lint_0.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ name: Lint 0
55

66
on:
77
push:
8-
branches-ignore:
9-
- 'release/*'
10-
- 'otelbot/*'
8+
branches:
9+
- 'main'
1110
pull_request:
1211

1312
permissions:

.github/workflows/misc_0.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ name: Misc 0
55

66
on:
77
push:
8-
branches-ignore:
9-
- 'release/*'
10-
- 'otelbot/*'
8+
branches:
9+
- 'main'
1110
pull_request:
1211

1312
permissions:

0 commit comments

Comments
 (0)