Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/profiling-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ on:
paths:
- ddtrace/internal/datadog/profiling/**
- ddtrace/profiling/**
- .github/workflows/profiling-native.yml
workflow_dispatch: {}

jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 7
timeout-minutes: 9
strategy:
fail-fast: false
matrix:
Expand All @@ -32,15 +33,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install llvm 19
run: |
# Ubuntu-24.04 GH actions image has llvm-18, but we use 19 as it's
# the latest one available.
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 19
- uses: KyleMayes/install-llvm-action@a7a1a882e2d06ebe05d5bb97c3e1f8c984ae96fc # v2.0.7
with:
version: "19"
cached: true

- name: Install Valgrind
if: ${{ matrix.sanitizer == 'valgrind' }}
run: |
sudo apt-get install -y valgrind

Expand Down
Loading