-
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable HDF-EOS5 Action again (#4902)
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: hdfeos5 dev | ||
|
||
# Triggers the workflow on push or pull request or on demand | ||
on: | ||
workflow_dispatch: | ||
push: | ||
pull_request: | ||
branches: [ develop ] | ||
paths-ignore: | ||
- '.github/CODEOWNERS' | ||
- '.github/FUNDING.yml' | ||
- 'doc/**' | ||
- 'release_docs/**' | ||
- 'ACKNOWLEDGEMENTS' | ||
- 'COPYING**' | ||
- '**.md' | ||
|
||
# Using concurrency to cancel any in-progress job or run | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: Build hdfeos5 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Install Autotools Dependencies (Linux) | ||
run: | | ||
sudo apt update | ||
sudo apt install automake autoconf libtool libtool-bin | ||
- name: Install HDF5 | ||
run: | | ||
./autogen.sh | ||
./configure --prefix=/usr/local --disable-tests --with-default-api-version=v16 | ||
make | ||
sudo make install | ||
- name: Install HDF-EOS5 | ||
run: | | ||
wget -O HDF-EOS5.2.0.tar.gz "https://git.earthdata.nasa.gov/projects/DAS/repos/hdfeos5/raw/hdf-eos5-2.0-src.tar.gz?at=refs%2Fheads%2FHDFEOS5_2.0" | ||
tar zxvf HDF-EOS5.2.0.tar.gz | ||
cd hdf-eos5-2.0 | ||
./configure CC=/usr/local/bin/h5cc --prefix=/usr/local/ --enable-install-include | ||
make | ||
make check | ||
sudo make install |
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