Skip to content

test Unix Makefiles #6363

test Unix Makefiles

test Unix Makefiles #6363

Workflow file for this run

# 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
env:
ENABLE_TESTING_JOBS: false
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:
if: ${{ env.ENABLE_TESTING_JOBS == false }}

Check failure on line 23 in .github/workflows/pr_push.yml

View workflow run for this annotation

GitHub Actions / PR/push

Invalid workflow file

The workflow is not valid. .github/workflows/pr_push.yml (Line: 23, Col: 9): Unrecognized named-value: 'env'. Located at position 1 within expression: env.ENABLE_TESTING_JOBS == false .github/workflows/pr_push.yml (Line: 26, Col: 9): Unrecognized named-value: 'env'. Located at position 1 within expression: env.ENABLE_TESTING_JOBS == false
uses: ./.github/workflows/reusable_checks.yml
FastBuild:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
name: Fast builds
needs: [CodeChecks]
uses: ./.github/workflows/reusable_fast.yml
Build:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
name: Basic builds
needs: [FastBuild]
uses: ./.github/workflows/reusable_basic.yml
DevDax:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [FastBuild]
uses: ./.github/workflows/reusable_dax.yml
MultiNuma:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [FastBuild]
uses: ./.github/workflows/reusable_multi_numa.yml
L0:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build]
uses: ./.github/workflows/reusable_gpu.yml
with:
provider: "LEVEL_ZERO"
runner: "L0"
shared_lib: "['ON']"
L0-BMG:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build]
uses: ./.github/workflows/reusable_gpu.yml
with:
provider: "LEVEL_ZERO"
runner: "L0-BMG"
shared_lib: "['ON']"
os: "['Ubuntu']"
CUDA:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build]
uses: ./.github/workflows/reusable_gpu.yml
with:
provider: "CUDA"
runner: "CUDA"
shared_lib: "['ON']"
Sanitizers:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [FastBuild]
uses: ./.github/workflows/reusable_sanitizers.yml
QEMU:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [FastBuild]
uses: ./.github/workflows/reusable_qemu.yml
with:
short_run: true
ProxyLib:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build]
uses: ./.github/workflows/reusable_proxy_lib.yml
Valgrind:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build]
uses: ./.github/workflows/reusable_valgrind.yml
Coverage:
# total coverage (on upstream only)
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build, DevDax, L0, CUDA, MultiNuma, QEMU, ProxyLib]
uses: ./.github/workflows/reusable_coverage.yml
secrets: inherit
with:
trigger: "${{github.event_name}}"
Coverage_partial:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
needs: [Build, QEMU, ProxyLib]
uses: ./.github/workflows/reusable_coverage.yml
CodeQL:
if: ${{ env.ENABLE_TESTING_JOBS == false }}
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
Compatibility:
needs: [Build]
uses: ./.github/workflows/reusable_compatibility.yml
strategy:
matrix:
tag: ["v0.11.0-rc1"]
with:
tag: ${{matrix.tag}}