-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Umberto Zerbinati <zerbinati@maths.ox.ac.uk>
- Loading branch information
Umberto Zerbinati
committed
Oct 28, 2023
1 parent
e2273d8
commit 4cffdd7
Showing
7 changed files
with
91 additions
and
38 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# .github/workflows/app.yaml | ||
name: ngsPETSc FEniCSx tests | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'no-ci/*' | ||
|
||
schedule: | ||
- cron: '30 10 7,14,21,28 * *' | ||
|
||
jobs: | ||
ngsolve_tests: | ||
runs-on: ubuntu-latest | ||
container: dolfinx/dolfinx:latest | ||
timeout-minutes: 20 | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Netgen and ngsPETSc | ||
run: | | ||
pip3 install netgen-mesher \ | ||
&& pip3 install pylint \ | ||
&& export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python3.10/site-packages \ | ||
&& NGSPETSC_NO_INSTALL_REQUIRED=ON pip install . | ||
- name: Check formatting | ||
run: | | ||
make lint | ||
make lint_test | ||
- name: Run test suite in serial | ||
run: | | ||
pytest -v tests/test_fenicsx.py |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# .github/workflows/app.yaml | ||
name: ngsPETSc | ||
name: ngsPETSc NGsolve tests | ||
on: | ||
push: | ||
branches-ignore: | ||
|
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
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
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
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
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