Skip to content

Commit

Permalink
ci: enable sf for mac clang15
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Sep 27, 2023
1 parent f74ac8e commit af1b68a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/mac-clang15-cmake.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac-13 CMake clang15 debug fortran parallel sf
name: mac-13 CMake Ninja clang15 debug fortran parallel sf

on:
workflow_dispatch:
Expand Down Expand Up @@ -57,6 +57,7 @@ jobs:
-DHDF5_ENABLE_ALL_WARNINGS=ON \
-DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} \
-DHDF5_ENABLE_THREADSAFE:BOOL=${{ matrix.ts }} \
-DHDF5_ENABLE_SUBFILING_VFD:BOOL=ON \
-DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF \
-DMPIEXEC_MAX_NUMPROCS:STRING=2 \
$GITHUB_WORKSPACE
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/mac-clang15-xcode.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac-13 CMake clang15 Xcode
name: mac-13 CMake Xcode clang15 debug parallel sf

on:
workflow_dispatch:
Expand Down Expand Up @@ -27,7 +27,16 @@ jobs:
-DHDF5_ENABLE_SUBFILING_VFD:BOOL=ON \
-DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF \
-G Xcode ..
- name: Build
run: |
cmake --build . --config Debug
ctest --build . -C Debug
- name: Test
run: |
ctest --build . -C Debug -E MPI_TEST_H5DIFF-h5diff -VV --output-on-error
- name: Install
run: |
sudo cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_INSTALL_CONFIG_NAME=Debug -P cmake_install.cmake

0 comments on commit af1b68a

Please sign in to comment.