Skip to content

Commit 285ec3b

Browse files
authored
Merge branch 'main' into brettlangdon/3.13
2 parents 15abd77 + 07db667 commit 285ec3b

File tree

105 files changed

+1205
-966
lines changed

Some content is hidden

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

105 files changed

+1205
-966
lines changed

.github/workflows/build-and-publish-image.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- uses: actions/checkout@v4
31+
with:
32+
persist-credentials: false
3133
- name: Set up QEMU
3234
uses: docker/setup-qemu-action@v2
3335
- name: Set up Docker Buildx

.github/workflows/build_deploy.yml

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
# Include all history and tags
3636
with:
37+
persist-credentials: false
3738
fetch-depth: 0
3839
- uses: actions-rust-lang/setup-rust-toolchain@v1
3940
- uses: actions/setup-python@v5
@@ -58,6 +59,8 @@ jobs:
5859
image: python:3.9-alpine
5960
steps:
6061
- uses: actions/checkout@v4
62+
with:
63+
persist-credentials: false
6164
- uses: actions/download-artifact@v4
6265
with:
6366
name: source-dist

.github/workflows/build_python_3.yml

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
include: ${{steps.set-matrix.outputs.include}}
2121
steps:
2222
- uses: actions/checkout@v4
23+
with:
24+
persist-credentials: false
2325
- uses: actions/setup-python@v5
2426
with:
2527
python-version: '3.8'
@@ -51,6 +53,7 @@ jobs:
5153
- uses: actions/checkout@v4
5254
# Include all history and tags
5355
with:
56+
persist-credentials: false
5457
fetch-depth: 0
5558

5659
- uses: actions/setup-python@v5

.github/workflows/changelog.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
# Include all history and tags
1717
with:
18+
persist-credentials: false
1819
fetch-depth: 0
1920

2021
# Ensure a new reno release note was added in this PR.

.github/workflows/codeowners.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
with:
15+
persist-credentials: false
1516
fetch-depth: 0
1617
- name: Get changed files
1718
id: changed-files

.github/workflows/codeql-analysis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
steps:
2828
- name: Checkout repository
2929
uses: actions/checkout@v4
30+
with:
31+
persist-credentials: false
3032

3133
# Initializes the CodeQL tools for scanning.
3234
- name: Initialize CodeQL

.github/workflows/django-overhead-profile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v4
3535
with:
36+
persist-credentials: false
3637
path: ddtrace
3738

3839
- uses: actions/setup-python@v5
@@ -51,4 +52,3 @@ jobs:
5152
with:
5253
name: django-overhead-profile${{ matrix.suffix }}
5354
path: ${{ github.workspace }}/prefix/artifacts
54-

.github/workflows/encoders-profile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:
24+
persist-credentials: false
2425
path: ddtrace
2526

2627
- uses: actions/setup-python@v5
@@ -43,4 +44,3 @@ jobs:
4344
with:
4445
name: encoders-profile
4546
path: ${{ github.workspace }}/prefix/artifacts
46-

.github/workflows/flask-overhead-profile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:
24+
persist-credentials: false
2425
path: ddtrace
2526

2627
- uses: actions/setup-python@v5
@@ -39,4 +40,3 @@ jobs:
3940
with:
4041
name: flask-overhead-profile
4142
path: ${{ github.workspace }}/prefix/artifacts
42-

.github/workflows/generate-package-versions.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
with:
20+
persist-credentials: false
1921

2022
- name: Setup Python 3.7
2123
uses: actions/setup-python@v5

.github/workflows/pr-name.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313
with:
14+
persist-credentials: false
1415
fetch-depth: 0
1516
- uses: actions/setup-node@v4
1617
name: Install Node.js
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Profiling Native Tests with Sanitizers
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- "mq-working-branch**"
8+
pull_request:
9+
paths:
10+
- ddtrace/internal/datadog/profiling/**
11+
- ddtrace/profiling/**
12+
workflow_dispatch: {}
13+
14+
jobs:
15+
test:
16+
runs-on: ${{ matrix.os }}
17+
timeout-minutes: 5
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
os: [ubuntu-24.04]
22+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
23+
sanitizer: ["safety", "thread"]
24+
25+
steps:
26+
- uses: actions/checkout@v4
27+
with:
28+
persist-credentials: false
29+
fetch-depth: 1
30+
31+
- uses: actions/setup-python@v5
32+
with:
33+
python-version: ${{ matrix.python-version }}
34+
35+
- name: Install llvm 19
36+
run: |
37+
# Ubuntu-24.04 GH actions image has llvm-18, but we use 19 as it's
38+
# the latest one available.
39+
wget https://apt.llvm.org/llvm.sh
40+
chmod +x llvm.sh
41+
sudo ./llvm.sh 19
42+
43+
- name: Run tests with sanitizers
44+
run: |
45+
# DEV: We currently have tests in dd_wrapper and stack_v2, setting
46+
# stack_v2 here will also run tests in dd_wrapper. Revisit this when
47+
# that changes.
48+
./ddtrace/internal/datadog/profiling/build_standalone.sh --${{matrix.sanitizer}} RelWithDebInfo stack_v2_test

.github/workflows/requirements-locks.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
with:
18+
persist-credentials: false
1819
fetch-depth: 0
1920

2021
- name: Fixup git permissions

.github/workflows/rust-ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
extension: ["src/core"]
1515
steps:
1616
- uses: actions/checkout@v4
17+
with:
18+
persist-credentials: false
1719
- name: Install latest stable toolchain and rustfmt
1820
run: rustup update stable && rustup default stable && rustup component add rustfmt clippy
1921
- name: Run cargo build

.github/workflows/set-target-milestone.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
# Include all history and tags
1717
with:
18+
persist-credentials: false
1819
fetch-depth: 0
1920
- uses: actions/setup-python@v5
2021
name: Install Python
@@ -32,7 +33,7 @@ jobs:
3233
with:
3334
github-token: ${{secrets.GITHUB_TOKEN}}
3435
script: |
35-
const title = "${{ steps.milestones.outputs.milestone }}";
36+
const title = "${{ steps.milestones.outputs.milestone }}"
3637
3738
const milestones = await github.rest.issues.listMilestones({
3839
owner: context.repo.owner,
@@ -52,6 +53,6 @@ jobs:
5253
await github.rest.issues.update({
5354
owner: context.repo.owner,
5455
repo: context.repo.repo,
55-
issue_number: ${{ github.event.pull_request.number }},
56+
issue_number: context.pull_request.number,
5657
milestone: milestone.number,
5758
});

.github/workflows/system-tests.yml

+16-10
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- name: Checkout system tests
1919
uses: actions/checkout@v4
2020
with:
21+
persist-credentials: false
2122
repository: 'DataDog/system-tests'
2223

2324
- name: Build agent
@@ -62,11 +63,13 @@ jobs:
6263
- name: Checkout system tests
6364
uses: actions/checkout@v4
6465
with:
66+
persist-credentials: false
6567
repository: 'DataDog/system-tests'
6668

6769
- name: Checkout dd-trace-py
6870
uses: actions/checkout@v4
6971
with:
72+
persist-credentials: false
7073
path: 'binaries/dd-trace-py'
7174
fetch-depth: 0
7275
# NB this ref is necessary to keep the checkout out of detached HEAD state, which setuptools_scm requires for
@@ -112,6 +115,7 @@ jobs:
112115
- name: Checkout system tests
113116
uses: actions/checkout@v4
114117
with:
118+
persist-credentials: false
115119
repository: 'DataDog/system-tests'
116120

117121
- name: Build runner
@@ -149,6 +153,14 @@ jobs:
149153
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'other'
150154
run: ./run.sh CROSSED_TRACING_LIBRARIES
151155

156+
- name: Run PROFILING
157+
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'other'
158+
run: |
159+
cat /proc/sys/kernel/perf_event_paranoid
160+
sudo sysctl kernel.perf_event_paranoid=1
161+
sudo sysctl -p
162+
./run.sh PROFILING
163+
152164
- name: Run REMOTE_CONFIG_MOCKED_BACKEND_ASM_FEATURES
153165
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'remote-config'
154166
run: ./run.sh REMOTE_CONFIG_MOCKED_BACKEND_ASM_FEATURES
@@ -233,17 +245,9 @@ jobs:
233245
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
234246
run: ./run.sh DEBUGGER_PROBES_STATUS
235247

236-
- name: Run DEBUGGER_METHOD_PROBES_SNAPSHOT
237-
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
238-
run: ./run.sh DEBUGGER_METHOD_PROBES_SNAPSHOT
239-
240-
- name: Run DEBUGGER_LINE_PROBES_SNAPSHOT
241-
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
242-
run: ./run.sh DEBUGGER_LINE_PROBES_SNAPSHOT
243-
244-
- name: Run DEBUGGER_MIX_LOG_PROBE
248+
- name: Run DEBUGGER_PROBES_SNAPSHOT
245249
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
246-
run: ./run.sh DEBUGGER_MIX_LOG_PROBE
250+
run: ./run.sh DEBUGGER_PROBES_SNAPSHOT
247251

248252
- name: Run DEBUGGER_PII_REDACTION
249253
if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
@@ -280,10 +284,12 @@ jobs:
280284
- name: Checkout system tests
281285
uses: actions/checkout@v4
282286
with:
287+
persist-credentials: false
283288
repository: 'DataDog/system-tests'
284289
- name: Checkout dd-trace-py
285290
uses: actions/checkout@v4
286291
with:
292+
persist-credentials: false
287293
path: 'binaries/dd-trace-py'
288294
fetch-depth: 0
289295
ref: ${{ github.event.pull_request.head.sha || github.sha }}

0 commit comments

Comments
 (0)