2020-05-06 21:10:02 +08:00
|
|
|
name: hdf5 dev CI
|
|
|
|
|
|
|
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
|
|
|
on:
|
2020-10-02 23:19:27 +08:00
|
|
|
workflow_dispatch:
|
2020-05-06 21:10:02 +08:00
|
|
|
push:
|
2022-08-22 23:21:27 +08:00
|
|
|
pull_request:
|
2023-02-12 23:15:38 +08:00
|
|
|
branches: [ develop ]
|
2020-10-02 23:19:27 +08:00
|
|
|
paths-ignore:
|
2022-08-22 23:21:27 +08:00
|
|
|
- '.github/CODEOWNERS'
|
|
|
|
- '.github/FUNDING.yml'
|
|
|
|
- 'doc/**'
|
|
|
|
- 'release_docs/**'
|
|
|
|
- 'ACKNOWLEDGEMENTS'
|
|
|
|
- 'COPYING**'
|
|
|
|
- '**.md'
|
2023-03-14 05:24:15 +08:00
|
|
|
|
|
|
|
# Using concurrency to cancel any in-progress job or run
|
|
|
|
concurrency:
|
2023-10-26 23:49:50 +08:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
|
2023-03-14 05:24:15 +08:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-05-19 05:08:10 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-08-22 23:21:27 +08:00
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or
|
|
|
|
# in parallel. We just have one job, but the matrix items defined below will
|
|
|
|
# run in parallel.
|
2020-05-06 21:10:02 +08:00
|
|
|
jobs:
|
2023-09-18 10:34:42 +08:00
|
|
|
workflow-autotools:
|
|
|
|
name: "Autotools Workflows"
|
|
|
|
uses: ./.github/workflows/autotools.yml
|
2024-01-31 22:13:15 +08:00
|
|
|
if: "!contains(github.event.head_commit.message, 'skip-ci')"
|
2022-08-22 23:21:27 +08:00
|
|
|
|
2023-09-18 10:34:42 +08:00
|
|
|
workflow-cmake:
|
|
|
|
name: "CMake Workflows"
|
|
|
|
uses: ./.github/workflows/cmake.yml
|
2024-01-31 22:13:15 +08:00
|
|
|
if: "!contains(github.event.head_commit.message, 'skip-ci')"
|
|
|
|
|
2024-03-14 22:16:53 +08:00
|
|
|
# workflow-msys2-autotools:
|
|
|
|
# name: "CMake msys2 Workflows"
|
|
|
|
# uses: ./.github/workflows/msys2-auto.yml
|
|
|
|
# with:
|
|
|
|
# build_mode: "production"
|
|
|
|
# build_option: "--enable-production"
|