applying petscwrappers to prior.R, prior.Rsolver and reducedHessian #76
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
style: | |
runs-on: ubuntu-22.04 | |
container: | |
image: dolfinx/dolfinx:stable | |
options: --user 1001 --privileged | |
name: CI test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: run serial check | |
run: | | |
cd ./hippylibX/test && | |
mpirun -n 1 python3 testing_suite_file.py | |
- name: run parallel check | |
run: | | |
cd ./hippylibX/test && | |
mpirun -n 2 python3 testing_suite_file.py | |