Skip to content

Fixed more spellings #3

Fixed more spellings

Fixed more spellings #3

Workflow file for this run

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