Fix fetching L0 and CUDA headers and add UMF_CUDA_INCLUDE_DIR #3610
Workflow file for this run
This file contains hidden or 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
| # Run checks required for a PR to merge and verify if post-merge commit is valid. | |
| # This workflow only call other workflows. | |
| name: PR/push | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| CodeChecks: | |
| uses: ./.github/workflows/reusable_checks.yml | |
| DocsBuild: | |
| uses: ./.github/workflows/reusable_docs_build.yml | |
| FastBuild: | |
| name: Fast builds | |
| needs: [CodeChecks, DocsBuild] | |
| uses: ./.github/workflows/reusable_fast.yml | |
| Build: | |
| name: Basic builds | |
| needs: [FastBuild] | |
| uses: ./.github/workflows/reusable_basic.yml | |
| DevDax: | |
| needs: [FastBuild] | |
| uses: ./.github/workflows/reusable_dax.yml | |
| Sanitizers: | |
| needs: [FastBuild] | |
| uses: ./.github/workflows/reusable_sanitizers.yml | |
| Qemu: | |
| needs: [FastBuild] | |
| uses: ./.github/workflows/reusable_qemu.yml | |
| Benchmarks: | |
| needs: [Build] | |
| uses: ./.github/workflows/reusable_benchmarks.yml | |
| ProxyLib: | |
| needs: [Build] | |
| uses: ./.github/workflows/reusable_proxy_lib.yml | |
| GPU: | |
| needs: [Build] | |
| uses: ./.github/workflows/reusable_gpu.yml | |
| Valgrind: | |
| needs: [Build] | |
| uses: ./.github/workflows/reusable_valgrind.yml | |
| MultiNuma: | |
| needs: [Build] | |
| uses: ./.github/workflows/reusable_multi_numa.yml | |
| Coverage: | |
| # total coverage (on upstream only) | |
| if: github.repository == 'oneapi-src/unified-memory-framework' | |
| needs: [Build, DevDax, GPU, MultiNuma, Qemu, ProxyLib] | |
| uses: ./.github/workflows/reusable_coverage.yml | |
| Coverage_partial: | |
| # partial coverage (on forks) | |
| if: github.repository != 'oneapi-src/unified-memory-framework' | |
| needs: [Build, Qemu, ProxyLib] | |
| uses: ./.github/workflows/reusable_coverage.yml | |
| CodeQL: | |
| needs: [Build] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| uses: ./.github/workflows/reusable_codeql.yml | |
| Trivy: | |
| needs: [Build] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| uses: ./.github/workflows/reusable_trivy.yml |