Skip to content

Commit

Permalink
Merge pull request #234 from phoebe-team/updateHighFive
Browse files Browse the repository at this point in the history
Further changes to migrate to HighFive v3
  • Loading branch information
jcoulter12 authored Dec 27, 2024
2 parents 35a3ed6 + b938ed7 commit d396e67
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildandtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
compiler:
[
#"GCC 10",
"GCC 14",
"Clang 15",
"GCC (Latest)",
"Clang 16",
#"Clang 11",
]
env:
Expand All @@ -34,13 +34,13 @@ jobs:
run: |
CC_VERSION=$( echo "${{ matrix.compiler }}" | awk '{ print $2; }')
echo "CC_VERSION=${CC_VERSION}" >> "$GITHUB_OUTPUT"
- name: Install GCC
- name: Install GCC
if: ${{ startsWith(matrix.compiler, 'GCC') }}
run: sudo apt install -y g++ #-${{ steps.extract_matrix.outputs.CC_VERSION }}
- name: Install Clang
if: ${{ startsWith(matrix.compiler, 'Clang') }}
run: |
sudo apt install -y clang #-${{ steps.extract_matrix.outputs.CC_VERSION }}
sudo apt install -y clang-16 #-${{ steps.extract_matrix.outputs.CC_VERSION }}
sudo apt install -y libomp-dev #${{ steps.extract_matrix.outputs.CC_VERSION }}-dev
- name: Configure
run: |
Expand Down
10 changes: 4 additions & 6 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,11 @@ if(HDF5_AVAIL)
-DHIGHFIVE_BUILD_DOCS=OFF
-DHIGHFIVE_EXAMPLES=OFF
-DHIGHFIVE_UNIT_TESTS=OFF
-DHIGHFIVE_USE_BOOST=OFF
-DHIGHFIVE_USE_EIGEN=ON
-DHIGHFIVE_TEST_BOOST=OFF
-DHIGHFIVE_TEST_EIGEN=ON
-DHDF5_IS_PARALLEL=${PARALLEL_HDF5}
-DHIGHFIVE_USE_OPENCV=OFF
-DHIGHFIVE_USE_XTENSOR=OFF
-DEIGEN3_INCLUDE_DIRS=${CMAKE_CURRENT_BINARY_DIR}/eigen_src
-DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}
-DHIGHFIVE_TEST_OPENCV=OFF
-DHIGHFIVE_TEST_XTENSOR=OFF
)
endif()

Expand Down

0 comments on commit d396e67

Please sign in to comment.