Skip to content

Commit

Permalink
add hdf5 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 committed Jul 31, 2024
1 parent c1eba79 commit b7d91fd
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,14 @@ jobs:

- name: Install HDF5
run: |
sudo apt-get update
sudo apt-get install -y libhdf5-dev
apt-cache show libhdf5-dev
rehash
which h5cc
h5cc --help
wget https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.14/hdf5-1.14.4/bin/unix/hdf5-1.14.4-3-ubuntu-2204_gcc.tar.gz
mkdir hdf5-1.14.4-3
tar -xf hdf5-1.14.4-3-ubuntu-2204_gcc.tar.gz --strip-components=4 -C hdf5-1.14.4-3
- name: Build and Check Silo
run: |
mkdir build
cd build
../configure --enable-pythonmodule --disable-fortran --prefix=`pwd`/myinstall
../configure --with-hdf5=`pwd`/../hdf5-1.14.4-3/include,`pwd`/../hdf5-1.14.4-3/lib --enable-pythonmodule --disable-fortran --prefix=`pwd`/myinstall
make -j 8 install
make -j 8 check

0 comments on commit b7d91fd

Please sign in to comment.