mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-01 16:28:09 +08:00
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials), [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.1.1 to 4.1.7 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...v4.1.7) Updates `aws-actions/configure-aws-credentials` from 1 to 4 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v1...v4) Updates `softprops/action-gh-release` from 2.0.5 to 2.0.6 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](69320dbe05...a74c6b72af
) Updates `github/codeql-action` from 3.25.7 to 3.25.11 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](f079b84933...b611370bb5
) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
name: hdf5 TestExpress Autotools CI
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build_and_test:
|
|
strategy:
|
|
matrix:
|
|
build_mode: ["production", "debug"]
|
|
include:
|
|
- build_mode: "production"
|
|
- build_mode: "debug"
|
|
|
|
name: "Autotools ${{ matrix.build_mode }} Express Test Workflows"
|
|
|
|
# Don't run the action if the commit message says to skip CI
|
|
if: "!contains(github.event.head_commit.message, 'skip-ci')"
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Linux Dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install ninja-build doxygen graphviz
|
|
sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
|
|
sudo apt install gcc-12 g++-12 gfortran-12
|
|
sudo apt install automake autoconf libtool libtool-bin
|
|
sudo apt install libaec0 libaec-dev
|
|
echo "CC=gcc-12" >> $GITHUB_ENV
|
|
echo "CXX=g++-12" >> $GITHUB_ENV
|
|
echo "FC=gfortran-12" >> $GITHUB_ENV
|
|
|
|
- name: Get Sources
|
|
uses: actions/checkout@v4.1.7
|
|
|
|
- name: Autotools Configure
|
|
shell: bash
|
|
run: |
|
|
sh ./autogen.sh
|
|
mkdir "${{ runner.workspace }}/build"
|
|
cd "${{ runner.workspace }}/build"
|
|
$GITHUB_WORKSPACE/configure \
|
|
--enable-build-mode=${{ matrix.build_mode }} \
|
|
--enable-shared \
|
|
--disable-parallel \
|
|
--disable-cxx \
|
|
--disable-fortran \
|
|
--disable-java \
|
|
--with-szlib=yes
|
|
|
|
- name: Autotools Build
|
|
shell: bash
|
|
run: |
|
|
make -j3
|
|
working-directory: ${{ runner.workspace }}/build
|
|
|
|
- name: Autotools Test
|
|
shell: bash
|
|
env:
|
|
HDF5TestExpress: 0
|
|
run: |
|
|
cd test
|
|
make -j3 check
|
|
working-directory: ${{ runner.workspace }}/build
|