mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
31a77261d3
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>
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: hdf5 dev autotools cygwin
|
|
|
|
# Triggers the workflow on a call from another workflow
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
build_mode:
|
|
description: "release vs. debug build"
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
cygwin_build_and_test:
|
|
name: "cygwin ${{ inputs.build_mode }}"
|
|
runs-on: windows-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Set git to use LF
|
|
run: |
|
|
git config --global core.autocrlf input
|
|
|
|
- name: Get Sources
|
|
uses: actions/checkout@v4.1.7
|
|
|
|
- name: Install Cygwin
|
|
uses: cygwin/cygwin-install-action@master
|
|
with:
|
|
packages: autoconf automake make gcc-fortran libtool zlib-devel m4 flex bison perl
|
|
|
|
- name: Autotools Configure
|
|
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'
|
|
run: |
|
|
export PATH=/usr/bin:$PATH
|
|
sh ./autogen.sh
|
|
mkdir build
|
|
cd build
|
|
../configure \
|
|
--enable-build-mode=${{ inputs.build_mode }} \
|
|
--enable-shared \
|
|
--enable-fortran
|
|
|
|
- name: Autotools Build
|
|
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'
|
|
run: |
|
|
export PATH=/usr/bin:$PATH
|
|
cd build
|
|
make -j3
|
|
|
|
- name: Autotools Run Tests
|
|
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'
|
|
run: |
|
|
export PATH=/usr/bin:$PATH
|
|
cd build
|
|
# make check -j ---- cache test fails
|
|
|
|
- name: Autotools Install
|
|
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'
|
|
run: |
|
|
export PATH=/usr/bin:$PATH
|
|
cd build
|
|
make install
|