adding an init during run #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Regression Test - Numba | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: gpu | |
#strategy: | |
# fail-fast: false | |
# matrix: | |
# os: ["ubuntu-latest"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Loads modules and activates conda debug | |
run: | | |
pwd | |
ls | |
module load cuda/12 openmpi/4.0_gcc-10 | |
source ~/.bashrc | |
conda create --name ghaction_temp python=3.11 | |
conda activate ghaction_temp | |
which python | |
bash install.sh --hpc | |
- name: Regression Test - Numba | |
run: | | |
conda activate gh_action_temp | |
cd test/regression | |
python run.py --mode=numba |