Skip to content
Closed

TEST PR #1515

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
161 changes: 81 additions & 80 deletions .github/workflows/pr_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,85 +19,86 @@ permissions:
jobs:
CodeChecks:
uses: ./.github/workflows/reusable_checks.yml
FastBuild:
name: Fast builds
needs: [CodeChecks]
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
# FastBuild:
# name: Fast builds
# needs: [CodeChecks]
# 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
MultiNuma:
needs: [FastBuild]
# needs: [FastBuild]
uses: ./.github/workflows/reusable_multi_numa.yml
L0:
needs: [Build]
uses: ./.github/workflows/reusable_gpu.yml
with:
provider: "LEVEL_ZERO"
runner: "L0"
shared_lib: "['ON']"
L0-BMG:
needs: [Build]
uses: ./.github/workflows/reusable_gpu.yml
with:
provider: "LEVEL_ZERO"
runner: "L0-BMG"
shared_lib: "['ON']"
CUDA:
needs: [Build]
uses: ./.github/workflows/reusable_gpu.yml
with:
provider: "CUDA"
runner: "CUDA"
shared_lib: "['ON']"
Sanitizers:
needs: [FastBuild]
uses: ./.github/workflows/reusable_sanitizers.yml
QEMU:
needs: [FastBuild]
uses: ./.github/workflows/reusable_qemu.yml
with:
short_run: true
ProxyLib:
needs: [Build]
uses: ./.github/workflows/reusable_proxy_lib.yml
Valgrind:
needs: [Build]
uses: ./.github/workflows/reusable_valgrind.yml
Coverage:
# total coverage (on upstream only)
if: github.repository == 'oneapi-src/unified-memory-framework'
needs: [Build, DevDax, L0, CUDA, MultiNuma, QEMU, ProxyLib]
uses: ./.github/workflows/reusable_coverage.yml
secrets: inherit
with:
trigger: "${{github.event_name}}"
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
Compatibility:
needs: [Build]
uses: ./.github/workflows/reusable_compatibility.yml
strategy:
matrix:
tag: ["v1.0.1"]
with:
tag: ${{matrix.tag}}
# L0:
# needs: [Build]
# uses: ./.github/workflows/reusable_gpu.yml
# with:
# provider: "LEVEL_ZERO"
# runner: "L0"
# shared_lib: "['ON']"
# L0-BMG:
# needs: [Build]
# uses: ./.github/workflows/reusable_gpu.yml
# with:
# provider: "LEVEL_ZERO"
# runner: "L0-BMG"
# shared_lib: "['ON']"
# os: "['Ubuntu']"
# CUDA:
# needs: [Build]
# uses: ./.github/workflows/reusable_gpu.yml
# with:
# provider: "CUDA"
# runner: "CUDA"
# shared_lib: "['ON']"
# Sanitizers:
# needs: [FastBuild]
# uses: ./.github/workflows/reusable_sanitizers.yml
# QEMU:
# needs: [FastBuild]
# uses: ./.github/workflows/reusable_qemu.yml
# with:
# short_run: true
# ProxyLib:
# needs: [Build]
# uses: ./.github/workflows/reusable_proxy_lib.yml
# Valgrind:
# needs: [Build]
# uses: ./.github/workflows/reusable_valgrind.yml
# Coverage:
# # total coverage (on upstream only)
# if: github.repository == 'oneapi-src/unified-memory-framework'
# needs: [Build, DevDax, L0, CUDA, MultiNuma, QEMU, ProxyLib]
# uses: ./.github/workflows/reusable_coverage.yml
# secrets: inherit
# with:
# trigger: "${{github.event_name}}"
# 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
# Compatibility:
# needs: [Build]
# uses: ./.github/workflows/reusable_compatibility.yml
# strategy:
# matrix:
# tag: ["v1.0.1"]
# with:
# tag: ${{matrix.tag}}
8 changes: 6 additions & 2 deletions .github/workflows/reusable_multi_numa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ env:

jobs:
multi_numa:
# run only on upstream; forks will not have the HW
if: github.repository == 'oneapi-src/unified-memory-framework'
# run only on upstream; forks will not have the HW
# if: github.repository == 'oneapi-src/unified-memory-framework'
strategy:
matrix:
os: [ubuntu-22.04, rhel-9.1, sles-15]
Expand Down Expand Up @@ -53,6 +53,10 @@ jobs:
working-directory: ${{github.workspace}}/build
run: ctest --output-on-failure --test-dir test

- name: exit
if: matrix.os == 'sles-15'
run: exit 1

# On RHEL/SLES, hwloc version is just a little too low.
# Skip some tests until we upgrade hwloc and update CMake to properly handle local hwloc installation.
# TODO: fix issue #560
Expand Down
Loading