Skip to content

fix: use parentheses for signature_ init to match existing style (#307) #144

fix: use parentheses for signature_ init to match existing style (#307)

fix: use parentheses for signature_ init to match existing style (#307) #144

Workflow file for this run

name: "Main"
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: '00 03 * * *'
jobs:
call-dev-workflow:

Check failure on line 11 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 11, Col: 3): Error calling workflow 'DataDog/dd-trace-cpp/.github/workflows/dev.yml@1f76c5cd2c8c9f8a472643b24f559b44be1fac12'. The nested job 'system-tests' is requesting 'id-token: write', but is only allowed 'id-token: none'.
uses: ./.github/workflows/dev.yml
secrets: inherit
permissions:
contents: read
packages: write
fuzz-testing:
needs: call-dev-workflow
runs-on: ubuntu-22.04-arm
container:
image: datadog/docker-library:dd-trace-cpp-ci-23768e9-arm64
env:
DURATION_SEC: 300 # 5min
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Configure
run: bin/with-toolchain llvm cmake . -B .build -DCMAKE_BUILD_TYPE=Debug -DDD_TRACE_BUILD_FUZZERS=1 -DDD_TRACE_ENABLE_SANITIZE=1 -DDD_TRACE_TRANSPORT=none
- name: Build
run: cmake --build .build -j --target dd_trace_cpp-fuzzers
- name: Run W3C propagation fuzzer
uses: ./.github/actions/fuzzer
with:
binary: ./.build/fuzz/w3c-propagation/w3c-propagation-fuzz
duration_seconds: ${DURATION_SEC}
- name: Run Base64 fuzzer
uses: ./.github/actions/fuzzer
with:
binary: ./.build/fuzz/base64/base64-fuzz
duration_seconds: ${DURATION_SEC}
- name: Run Remote Configuration fuzzer
uses: ./.github/actions/fuzzer
with:
binary: ./.build/fuzz/remote-configuration/remote-config-fuzz
duration_seconds: ${DURATION_SEC}