Fixed readthedocs build bugs. #80
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 on slef hosted | ||
runs-on: self-hosted | ||
Check failure on line 3 in .github/workflows/regression_test-numba_gpu.yml GitHub Actions / Regression test on slef hostedInvalid workflow file
|
||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
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: | | ||
pip install -e . | ||
pip list | ||
- name: Patch Numba | ||
run : | | ||
bash .github/workflows/patch.sh | ||
- name: Regression Test - Numba | ||
run: | | ||
cd test/regression | ||
python run.py --mode=numba --target=gpu |