-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (32 loc) · 973 Bytes
/
main-auto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Lifeboat hdf5 dev autotools CI
# For now, run as a daily build at 07:00 CDT (12:00 UTC) or on
# demand. Later on this workflow can be enabled on commits ('push')
# or pull requests.
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
# push:
# pull_request:
# branches: [ 1_14_2_multithread ]
# paths-ignore:
# - '**.md'
permissions:
contents: read
# 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
jobs:
call-debug-autotools:
name: "Autotools Debug Workflows"
uses: ./.github/workflows/autotools.yml
with:
build_mode: "debug"
# Disable production builds for now until future development allows
# for controlling testing time
# call-release-autotools:
# name: "Autotools Release Workflows"
# uses: ./.github/workflows/autotools.yml
# with:
# build_mode: "production"