more debugging #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic | |
on: | |
push: | |
branches: ["mcm86-30jul24-gh-actions-ci"] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Probe system | |
run: | | |
pwd | |
ls | |
- name: Install HDF5 | |
run: | | |
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 | |
pwd | |
ls | |
- name: Build and Check Silo | |
run: | | |
mkdir build | |
cd build | |
../configure --with-hdf5=`pwd`/../hdf5-1.14.4-3/include,`pwd`/../hdf5-1.14.4-3/lib --enable-pythonmodule --disable-fortran --prefix=`pwd`/myinstall | |
cat config.log | |
make -j 8 install | |
make -j 8 check |