Skip to content

CI: test

CI: test #25

Workflow file for this run

## Copyright 2024 Intel Corporation
## SPDX-License-Identifier: Apache-2.0
name: (Internal) CI workflow
on:
push:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
build-rockylinux8:
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker_gpu.yml@main

Check failure on line 18 in .github/workflows/internal.ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/internal.ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/internal.ci.yml" -> "intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker_gpu.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
project: oidn
image: oidn/rockylinux:8.8
dpcpp-version: intel-llvm/nightly-2023-10-26-rk
cmd: scripts/build.py install --full
artifact-out: build-rockylinux8
artifact-path: build install deps
test-rockylinux8-cuda:
needs: build-rockylinux8
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker_gpu.yml@main
with:
project: oidn
runs-on: '[ "Linux", "gpu_nvidia" ]'
image: oidn/ubuntu:22.04
options: --gpus all
artifact-in: build-rockylinux8
artifact-out: test-rockylinux8-cuda
artifact-path: test.log
artifact-on-failure: true
cmd: scripts/test.py --device cuda --memcheck --log test.log
test-rockylinux8-hip:
needs: build-rockylinux8
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker_gpu.yml@main
with:
project: oidn
runs-on: '[ "Linux", "gpu_amd" ]'
image: oidn/rockylinux:8.8
options: --device=/dev/kfd --device=/dev/dri
artifact-in: build-rockylinux8
artifact-out: test-rockylinux8-hip
artifact-path: test.log
artifact-on-failure: true
cmd: scripts/test.py --device hip --memcheck --log test.log