Skip to content

Workflow file for this run

name: Sanitize with AddressSanitizer, MemorySanitizer, ThreadSanitizer and UndefinedBehaviorSanitizer.
on:
push:
branches:
- sanitizers-in-docker
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
run_asan:
needs: build_dependencies

Check failure on line 14 in .github/workflows/sanitize.yaml

View workflow run for this annotation

GitHub Actions / Sanitize with AddressSanitizer, MemorySanitizer, ThreadSanitizer and UndefinedBehaviorSanitizer.

Invalid workflow file

The workflow is not valid. .github/workflows/sanitize.yaml (Line: 14, Col: 12): Job 'run_asan' depends on unknown job 'build_dependencies'. .github/workflows/sanitize.yaml (Line: 20, Col: 12): Job 'run_msan' depends on unknown job 'build_dependencies'.
uses: ./.github/workflows/sanitizer-check.yaml
with:
sanitizer-name: 'asan'
run_msan:
needs: build_dependencies
uses: ./.github/workflows/sanitizer-check.yaml
with:
sanitizer-name: 'msan'
run_tsan:
needs: build_dependencies
uses: ./.github/workflows/sanitizer-check.yaml
with:
sanitizer-name: 'tsan'
run_ubsan:
uses: ./.github/workflows/sanitizer-check.yaml
with:
sanitizer-name: 'ubsan'