summaryrefslogtreecommitdiffstats
path: root/.github/workflows/linux-icx.yml
diff options
context:
space:
mode:
authorH. Joe Lee <hyoklee@hdfgroup.org>2023-08-31 03:21:08 (GMT)
committerGitHub <noreply@github.com>2023-08-31 03:21:08 (GMT)
commita993bb8f12e92f2f36d5cd22f5d89bd67197959c (patch)
treeade9d4e25886586146de1c95e61f8fb5c0ff4555 /.github/workflows/linux-icx.yml
parent54d19b0bcbaf52648c9e14e9094c156f8afbd124 (diff)
downloadhdf5-a993bb8f12e92f2f36d5cd22f5d89bd67197959c.zip
hdf5-a993bb8f12e92f2f36d5cd22f5d89bd67197959c.tar.gz
hdf5-a993bb8f12e92f2f36d5cd22f5d89bd67197959c.tar.bz2
Disable SZIP for Intel oneAPI Action (#3449)
* Disable SZIP for Intel oneAPI Action * Disable Fortran and parallel
Diffstat (limited to '.github/workflows/linux-icx.yml')
-rw-r--r--.github/workflows/linux-icx.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/linux-icx.yml b/.github/workflows/linux-icx.yml
index 983ef70..58615d0 100644
--- a/.github/workflows/linux-icx.yml
+++ b/.github/workflows/linux-icx.yml
@@ -44,14 +44,15 @@ jobs:
cmake -S . -B build \
-DCMAKE_BUILD_TYPE="RelWithDebInfo" \
-DCMAKE_INSTALL_PREFIX=install \
- -DHDF5_BUILD_FORTRAN=ON \
- -DHDF5_ENABLE_PARALLEL=ON \
+ -DHDF5_BUILD_FORTRAN=OFF \
+ -DHDF5_ENABLE_PARALLEL=OFF \
-DHDF5_BUILD_HL_LIB=ON \
-DCMAKE_CXX_COMPILER=dpcpp \
-DCMAKE_C_COMPILER=icx \
-DCMAKE_Fortran_COMPILER=ifx \
-DMKL_ROOT="/opt/intel/oneapi/mkl/latest" \
- -DTBB_ROOT="/opt/intel/oneapi/tbb/latest"
+ -DTBB_ROOT="/opt/intel/oneapi/tbb/latest" \
+ -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF
- name: build
shell: bash