Skip to content

Commit e524e89

Browse files
committed
adds github action tests (for Gmsh & EM)
1 parent 71525aa commit e524e89

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.github/workflows/CI.yml

+48
Original file line numberDiff line numberDiff line change
@@ -605,4 +605,52 @@ jobs:
605605
run: ./.github/scripts/run_tests.sh
606606
shell: bash
607607

608+
linuxTest_13:
609+
name: Test run example 13 - Gmsh w/ Stacey
610+
runs-on: ubuntu-latest
611+
needs: [linuxCheck]
612+
613+
steps:
614+
- uses: actions/checkout@v4
615+
616+
- name: Install packages
617+
run: ./.github/scripts/run_install.sh
618+
shell: bash
619+
620+
- name: Run build
621+
env:
622+
TESTFLAGS: --with-mpi
623+
run: ./.github/scripts/run_build.sh
624+
shell: bash
625+
626+
- name: Run test
627+
env:
628+
TESTDIR: EXAMPLES/Gmsh_example_Stacey_MPI
629+
run: ./.github/scripts/run_tests.sh
630+
shell: bash
631+
632+
linuxTest_14:
633+
name: Test run example 14 - EM
634+
runs-on: ubuntu-latest
635+
needs: [linuxCheck]
636+
637+
steps:
638+
- uses: actions/checkout@v4
639+
640+
- name: Install packages
641+
run: ./.github/scripts/run_install.sh
642+
shell: bash
643+
644+
- name: Run build
645+
env:
646+
TESTFLAGS: --enable-debug
647+
run: ./.github/scripts/run_build.sh
648+
shell: bash
649+
650+
- name: Run test
651+
env:
652+
TESTDIR: EXAMPLES/electromagnetic_GPR_TM
653+
DEBUG: true
654+
run: ./.github/scripts/run_tests.sh
655+
shell: bash
608656

0 commit comments

Comments
 (0)