-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (41 loc) · 1.08 KB
/
key4hep-build.yaml
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
38
39
40
41
42
43
44
# Do not edit this file, it will be overwritten!
# The template file can be found in
# https://github.com/key4hep/key4hep-actions/blob/main/workflows/key4hep-build.yaml
name: Key4hep build
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '16 4 * * *' # Fixed cron syntax
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
build_type: ["release", "nightly"]
image: ["alma9", "ubuntu22"]
stack: ["key4hep"]
include:
- build_type: nightly
image: ubuntu24
stack: key4hep
- build_type: release
image: alma9
stack: devkey
- build_type: nightly
image: alma9
stack: devkey
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: key4hep/key4hep-actions/key4hep-build@main
with:
build_type: ${{ matrix.build_type }}
image: ${{ matrix.image }}
stack: ${{ matrix.stack }}