[DO NOT MERGE] Add user event to Laravel #412
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Profiling ASAN Tests | |
on: | |
pull_request: | |
jobs: | |
prof-asan: | |
runs-on: ubuntu-latest | |
container: | |
image: datadog/dd-trace-ci:php-8.3_bookworm-1 | |
# https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions#user | |
options: --user root | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Restore build cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-asan-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build and install profiler | |
run: | | |
set -eux | |
switch-php nts-asan | |
cd profiling | |
export CARGO_TARGET_DIR=/tmp/build-cargo | |
export CC=clang-16 | |
export CFLAGS='-fsanitize=address -fno-omit-frame-pointer' | |
export LDFLAGS='-fsanitize=address' | |
export RUSTC_LINKER=lld-16 | |
triplet=$(uname -m)-unknown-linux-gnu | |
RUSTFLAGS='-Zsanitizer=address' cargo +nightly-2023-05-03 build -Zbuild-std --target $triplet --release | |
cp -v "$CARGO_TARGET_DIR/$triplet/release/libdatadog_php_profiling.so" "$(php-config --extension-dir)/datadog-profiling.so" | |
- name: Cache build dependencies | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
/tmp/build-cargo/ | |
key: ${{ runner.os }}-cargo-asan-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run phpt tests | |
run: | | |
set -eux | |
switch-php nts-asan | |
cd profiling/tests | |
cp -v $(php-config --prefix)/lib/php/build/run-tests.php . | |
php run-tests.php --show-diff --asan -d extension=datadog-profiling.so phpt | |