Skip to content

Commit

Permalink
adds github action tests (for Gmsh & EM)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeter committed Jun 5, 2024
1 parent 71525aa commit e524e89
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -605,4 +605,52 @@ jobs:
run: ./.github/scripts/run_tests.sh
shell: bash

linuxTest_13:
name: Test run example 13 - Gmsh w/ Stacey
runs-on: ubuntu-latest
needs: [linuxCheck]

steps:
- uses: actions/checkout@v4

- name: Install packages
run: ./.github/scripts/run_install.sh
shell: bash

- name: Run build
env:
TESTFLAGS: --with-mpi
run: ./.github/scripts/run_build.sh
shell: bash

- name: Run test
env:
TESTDIR: EXAMPLES/Gmsh_example_Stacey_MPI
run: ./.github/scripts/run_tests.sh
shell: bash

linuxTest_14:
name: Test run example 14 - EM
runs-on: ubuntu-latest
needs: [linuxCheck]

steps:
- uses: actions/checkout@v4

- name: Install packages
run: ./.github/scripts/run_install.sh
shell: bash

- name: Run build
env:
TESTFLAGS: --enable-debug
run: ./.github/scripts/run_build.sh
shell: bash

- name: Run test
env:
TESTDIR: EXAMPLES/electromagnetic_GPR_TM
DEBUG: true
run: ./.github/scripts/run_tests.sh
shell: bash

0 comments on commit e524e89

Please sign in to comment.