ROOT Main #432
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
name: 'ROOT Main' | |
on: | |
schedule: | |
- cron: '0 0,12 * * *' | |
workflow_dispatch: | |
inputs: | |
incremental: | |
description: 'Do incremental build' | |
type: boolean | |
required: true | |
default: true | |
binaries: | |
description: Create binary packages and upload them as artifacts | |
type: boolean | |
required: true | |
default: false | |
buildtype: | |
description: The CMAKE_BUILD_TYPE to use for non-Windows. | |
type: choice | |
options: | |
- Debug | |
- RelWithDebInfo | |
- Release | |
- MinSizeRel | |
default: Debug | |
required: true | |
jobs: | |
run_nightlies: | |
uses: root-project/root/.github/workflows/root-ci.yml@master | |
secrets: inherit |