Skip to content

Test Benchmark Examples #159

Test Benchmark Examples

Test Benchmark Examples #159

Workflow file for this run

name: Test Examples
on:
workflow_dispatch:
schedule:
- cron: '59 23 * * 0,2,4'
env:
# 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
matrix:
python-version: ['3.8']
steps:
- uses: actions/checkout@v3
- name: Check CUDA
run: nvcc -V
- name: Install dependencies
run:
python -m pip install -U pip
pip install tox tox-gh-actions -U
- name: Test with tox
run: tox -e python${{ matrix.python-version }}-gpu