Skip to content

Commit

Permalink
Reviews actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lmdiazangulo committed Dec 23, 2024
1 parent a4316dc commit 5008a70
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
build-type: ["Debug", "Release"]
mpi: ["No", "Yes"]
mpi: ["No"]
mtln: ["No"]
hdf: ["Yes"]

Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/ubuntu-nvidia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,13 @@ jobs:
- name: Install python wrapper requirements
run: |
python -m pip install -r requirements.txt
# - name: Run wrapper tests
# timeout-minutes: 60
# run: |
# python -m pytest test
- name: Run all wrapper tests
if: matrix.mtln=='Yes'
run: python -m pytest test/

- name: Run non-mtln wrapper tests
if: matrix.mtln=='No'
run: python -m pytest -m 'not mtln' test/


11 changes: 8 additions & 3 deletions .github/workflows/windows-intelLLVM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
matrix:
build-type: ["Debug", "Release"]
mpi: ["No"]
mtln: ["No"]
mtln: ["Yes", "No"]
hdf: ["Yes"]

name: windows-intelLLVM ${{matrix.build-type}} - mpi ${{matrix.mpi}} - mtln ${{matrix.mtln}}

Expand Down Expand Up @@ -43,14 +44,18 @@ jobs:
- name: CMake build
shell: bash
run: |
cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=${{matrix.build-type}} -DSEMBA_FDTD_ENABLE_MPI=${{matrix.mpi}} -DSEMBA_FDTD_ENABLE_MTLN=${{matrix.mtln}}
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=${{matrix.build-type}} \
-DSEMBA_FDTD_ENABLE_MPI=${{matrix.mpi}} \
-DSEMBA_FDTD_ENABLE_HDF=${{matrix.hdf}} \
-DSEMBA_FDTD_ENABLE_MTLN=${{matrix.mtln}}
cmake --build build -j
- name: Install python wrapper requirements
run: |
python -m pip install -r requirements.txt
- name: Run all wrapper tests
- name: Run all wrapper tests (except codemodel)
if: matrix.mtln=='Yes'
run: python -m pytest 'not codemodel' test/

Expand Down

0 comments on commit 5008a70

Please sign in to comment.