Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmorgan98 committed May 7, 2024
1 parent 4fd6241 commit ac033b4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/numba_self_host.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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: Set up python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: debug
run: |
pwd
ls
- uses: mpi4py/setup-mpi@v1
- name: Install dependencies
run: |
#sudo apt-get install libopenmpi-dev
#pip install numpy numba h5py matplotlib scipy pytest colorama mpi4py ngsolve distinctipy
pip list
pip install -e .
- name: Patch Numba
run : |
bash .github/workflows/patch.sh
- name: Regression Test - Numba
run: |
cd test/regression
python run.py --mode=numba

0 comments on commit ac033b4

Please sign in to comment.