Skip to content
Open
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
32 changes: 32 additions & 0 deletions .github/workflows/gpu-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: self-hosted-workflow
on:
pull_request:
branches: [ "main" ]

jobs:
gpu-h100:
runs-on: cern-nextgen-h100
container: registry.cern.ch/ngt-wp1.7/wp1.7-soa-wrapper:latest
steps:
- uses: actions/checkout@v4

- name: Install boost
run: |
dnf clean all
dnf makecache
dnf install boost-devel.x86_64 -y


- name: cvmfs
run: |
ls /cvmfs/atlas.cern.ch/repo
- name: nvidia-smi
run: |
nvidia-smi

- name: Compile and run CUDA tests
working-directory: ${{ github.workspace }}/tests
run: |
cmake -B build
cmake --build build --parallel
ctest --test-dir build --output-on-failure
1 change: 0 additions & 1 deletion .github/workflows/test-cpp-interface.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ jobs:
cmake -B build/release -DCMAKE_BUILD_TYPE=Release
cmake --build build/release
ctest --test-dir build/release --output-on-failure

Loading