Puts herr macros in do..while loops (#430) #38
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: ppc64le Autotools | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '.github/CODEOWNERS' | |
- 'release_notes/**' | |
- 'COPYING' | |
- '**.md' | |
jobs: | |
powerpc: | |
# The host should always be Linux | |
runs-on: ubuntu-latest | |
name: Ubuntu PowerPC | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: uraimo/run-on-arch-action@v2 | |
name: Run commands | |
id: runcmd | |
with: | |
arch: ppc64le | |
distro: ubuntu_latest | |
# Not required, but speeds up builds by storing container images in | |
# a GitHub package registry. | |
githubToken: ${{ github.token }} | |
install: | | |
apt-get update -q -y | |
apt-get install -q -y --no-install-recommends \ | |
automake autoconf gcc \ | |
libc6-dev libjpeg-dev libtool libtool-bin \ | |
make sudo zlib1g zlib1g-dev | |
run: | | |
./autogen.sh | |
./configure --prefix=/usr/local \ | |
--enable-shared --enable-hdf4-xdr \ | |
--disable-fortran --disable-netcdf | |
make | |
sudo make install |