Skip to content

Commit a08a848

Browse files
committed
WIP
1 parent da68177 commit a08a848

24 files changed

Lines changed: 964 additions & 2260 deletions

.codecov.yml

Lines changed: 0 additions & 1886 deletions
This file was deleted.

.github/workflows/config/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dev/testing:
1919
- changed-files:
2020
- any-glob-to-any-file:
2121
- .github/workflows/**
22-
- .codecov.yml
22+
- code-coverage.datadog.yml
2323
dev/tooling:
2424
- changed-files:
2525
- any-glob-to-any-file:

.github/workflows/master-windows.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ jobs:
7878
(success() || failure())
7979
runs-on: ubuntu-latest
8080
permissions:
81-
# needed for codecov, allows the action to get a JWT signed by Github
82-
id-token: write
8381
contents: read
8482

8583
steps:
@@ -92,13 +90,6 @@ jobs:
9290
path: coverage-reports
9391
merge-multiple: false
9492

95-
- name: Upload coverage to Codecov
96-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
97-
with:
98-
use_oidc: true
99-
directory: coverage-reports
100-
fail_ci_if_error: false
101-
10293
- name: Upload coverage to Datadog
10394
if: always()
10495
continue-on-error: true

.github/workflows/master.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ jobs:
7575
(success() || failure())
7676
runs-on: ubuntu-latest
7777
permissions:
78-
# needed for codecov, allows the action to get a JWT signed by Github
79-
id-token: write
8078
contents: read
8179

8280
steps:
@@ -89,13 +87,6 @@ jobs:
8987
path: coverage-reports
9088
merge-multiple: false
9189

92-
- name: Upload coverage to Codecov
93-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
94-
with:
95-
use_oidc: true
96-
directory: coverage-reports
97-
fail_ci_if_error: false
98-
9990
- name: Upload coverage to Datadog
10091
if: always()
10192
continue-on-error: true

.github/workflows/nightly-base-package-windows.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
uses: ./.github/workflows/test-all-windows.yml
1818

1919
permissions:
20-
# needed for codecov in test-target.yml, allows the action to get a JWT signed by Github
21-
id-token: write
2220
# needed for compute-matrix in test-target.yml
2321
contents: read
2422

.github/workflows/nightly-base-package.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
uses: ./.github/workflows/test-all.yml
1616

1717
permissions:
18-
# needed for codecov in test-target.yml, allows the action to get a JWT signed by Github
19-
id-token: write
2018
# needed for compute-matrix in test-target.yml
2119
contents: read
2220

.github/workflows/pr-all-windows.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ jobs:
5151
(success() || failure())
5252
runs-on: ubuntu-latest
5353
permissions:
54-
# needed for codecov, allows the action to get a JWT signed by Github
55-
id-token: write
5654
contents: read
5755

5856
steps:
@@ -65,13 +63,6 @@ jobs:
6563
path: coverage-reports
6664
merge-multiple: false
6765

68-
- name: Upload coverage to Codecov
69-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
70-
with:
71-
use_oidc: true
72-
directory: coverage-reports
73-
fail_ci_if_error: false
74-
7566
- name: Upload coverage to Datadog
7667
if: always()
7768
continue-on-error: true

.github/workflows/pr-all.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ jobs:
5454
(success() || failure())
5555
runs-on: ubuntu-latest
5656
permissions:
57-
# needed for codecov, allows the action to get a JWT signed by Github
58-
id-token: write
5957
contents: read
6058

6159
steps:
@@ -68,13 +66,6 @@ jobs:
6866
path: coverage-reports
6967
merge-multiple: false
7068

71-
- name: Upload coverage to Codecov
72-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
73-
with:
74-
use_oidc: true
75-
directory: coverage-reports
76-
fail_ci_if_error: false
77-
7869
- name: Upload coverage to Datadog
7970
if: always()
8071
continue-on-error: true

.github/workflows/pr-test.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ jobs:
112112
inputs.pytest-args != '-m flaky'
113113
runs-on: ubuntu-latest
114114
permissions:
115-
# needed for codecov, allows the action to get a JWT signed by Github
116-
id-token: write
117115
contents: read
118116

119117
steps:
@@ -126,13 +124,6 @@ jobs:
126124
path: coverage-reports
127125
merge-multiple: false
128126

129-
- name: Upload coverage to Codecov
130-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
131-
with:
132-
use_oidc: true
133-
directory: coverage-reports
134-
fail_ci_if_error: false
135-
136127
- name: Upload coverage to Datadog
137128
if: always()
138129
continue-on-error: true

.github/workflows/pr.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,5 @@ jobs:
2424
secrets: inherit
2525

2626
permissions:
27-
# needed for codecov in pr-test.yml, allows the action to get a JWT signed by Github
28-
id-token: write
2927
# needed for compute-matrix in test-target.yml
3028
contents: read

0 commit comments

Comments
 (0)