add detector type and calodata extension to ECalEndcap_Turbine_o1_v03_geo #1012
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 * * *' | |
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 | |
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 }} |