diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2022-11-23 20:00:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 20:00:00 (GMT) |
commit | eac2cd54e209cfa9556174f3fc1a592533aa64ad (patch) | |
tree | ab6587c314660ec4714f84ce40a86e50fa6efeba /.github/workflows/main.yml | |
parent | 3e762b07aade3a54bcd3e3e5e543fedbba83ab3f (diff) | |
download | hdf5-eac2cd54e209cfa9556174f3fc1a592533aa64ad.zip hdf5-eac2cd54e209cfa9556174f3fc1a592533aa64ad.tar.gz hdf5-eac2cd54e209cfa9556174f3fc1a592533aa64ad.tar.bz2 |
Develop ubuntu 20.04 (#2267)
* Use ubuntu-20.04 for github autotools parallel tests until parallel
configure is fixed on ubuntu 22.04.
* Remove inactive developers from CODEOWNERS.
* Temporarily cat config.log for autotools build in github actions.
* Try ubuntu-latest.
* Attempt to cat config.log even when configure fails.
* Fix syntax.
* Try again
* Try again
* Try again.
* Back to original temporary fix.
* Install libopenmpi-dev with openmpi-bin, which was installed as a
dependency prior to ubuntu-22.04.
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a2783b4..473a137 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -120,7 +120,7 @@ jobs: # so we catch most issues in daily testing. What we have here is just # a compile check to make sure nothing obvious is broken. - name: "Ubuntu gcc Autotools parallel (build only)" - os: ubuntu-20.04 + os: ubuntu-latest cpp: disable fortran: enable java: disable @@ -347,7 +347,7 @@ jobs: run: | sudo apt update sudo apt install automake autoconf libtool libtool-bin - sudo apt install openmpi-bin openmpi-common + sudo apt install openmpi-bin openmpi-common libopenmpi-dev echo "CC=mpicc" >> $GITHUB_ENV echo "FC=mpif90" >> $GITHUB_ENV if: (matrix.generator == 'autogen') && (matrix.parallel == 'enable') |