From ac033b4391670d8c35074b4388a9d4951db9601f Mon Sep 17 00:00:00 2001 From: "Joanna Piper Morgan (jonsey)" Date: Tue, 7 May 2024 09:41:55 -0700 Subject: [PATCH] wip --- .github/workflows/numba_self_host.yml | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/numba_self_host.yml diff --git a/.github/workflows/numba_self_host.yml b/.github/workflows/numba_self_host.yml new file mode 100644 index 00000000..8ea445d3 --- /dev/null +++ b/.github/workflows/numba_self_host.yml @@ -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