-
Notifications
You must be signed in to change notification settings - Fork 36
37 lines (30 loc) · 1.01 KB
/
test_examples.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Test Benchmark Examples
on:
workflow_dispatch:
schedule:
- cron: '59 23 * * 0,2,4'
env:
### CUDA paths for MSU ICER HPC with "module load CUDA/11.8"
CUDA_PATH: '/opt/software/CUDA/11.8.0'
LD_LIBRARY_PATH: '/opt/software/CUDA/11.8.0/lib64'
### CUDA paths for MSU ICER HPC with "module load GCC/8.3.0 CUDA/10.2.89"
# CUDA_PATH: '/opt/software/CUDA/10.2.89-GCC-8.3.0'
# LD_LIBRARY_PATH: '/opt/software/CUDA/10.2.89-GCC-8.3.0/lib64'
jobs:
run_examples:
runs-on: self-hosted
strategy:
fail-fast: false
steps:
# XXX: [2024-02-05] MSU ICER HPCC GLIBC 2.27 not setup correctly to be
# compatible with higher version GCCcore (11.x). Need to use v3 to
# bypass the GLIBC 2.27 error due to node20 for now.
- uses: actions/checkout@v3
- name: Check CUDA
run: nvcc -V
- name: Install dependencies
run:
python -m pip install -U pip
pip install tox -U
- name: Test with tox
run: tox -e py39-gpu-lightbenchtest