Skip to content

Commit

Permalink
add single tests for cuda/libceed/gslib. fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlaughlin committed Jun 26, 2024
1 parent 932f8b9 commit a6c7044
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,32 @@ jobs:
# NOTE: If setup.py could accept a commit hash as an argument, that could give us more flexibility here
mfem-branch: [master, default] # 'default' uses a specific commit hash defined in setup.py:repos_sha
parallel: [false, true]
cuda: [true]
cuda: [false]
libceed: [false]
gslib: [true]
gslib: [false]

# Include a single test using macos
# We don't want to expand dimensions for the following configurations
include:
- os: macos-latest
python-version: '3.9'
mfem-branch: 'default'
parallel: false
cuda: false
- os: ubuntu-latest
python-version: '3.9'
mfem-branch: 'default'
parallel: false
cuda: true
- os: ubuntu-latest
python-version: '3.9'
mfem-branch: 'default'
parallel: false
libceed: true
- os: ubuntu-latest
python-version: '3.9'
mfem-branch: 'default'
parallel: false
gslib: true

# CUDA does not support MacOS - this is a safeguard and shouldn't be needed for most matrix configs
exclude:
Expand All @@ -54,6 +69,7 @@ jobs:
libceed: ${{ matrix.libceed }}
gslib: ${{ matrix.gslib }}

name:
# name: >-
# Build/test:
# ${{ matrix.os }},
Expand Down

0 comments on commit a6c7044

Please sign in to comment.