Generate reference results (manual) #29
This file contains hidden or 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: Generate reference results (manual) | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| suites: | |
| description: 'Test suites to execute (comma-separated, see tests.yaml)' | |
| default: 'release' | |
| required: true | |
| type: string | |
| from_ref: | |
| description: 'Git branch to use and commit to' | |
| required: true | |
| type: string | |
| commit_msg: | |
| description: 'Commit message' | |
| default: "Add reference results" | |
| type: string | |
| tutorials_ref_source: | |
| description: 'Use tutorials from' | |
| default: 'reference_versions.yaml' | |
| type: choice | |
| options: | |
| - 'reference_versions.yaml' | |
| - 'workflow branch' | |
| build_args: | |
| description: 'Optional overrides for reference_versions.yaml (e.g. TUTORIALS_REF:my-branch)' | |
| required: false | |
| type: string | |
| clean_docker: | |
| description: 'Run docker-system-prune before running tests' | |
| default: 'FALSE' | |
| type: choice | |
| options: | |
| - 'FALSE' | |
| - 'TRUE' | |
| log_level: | |
| description: 'Logging verbosity of systemtests.py' | |
| default: 'INFO' | |
| type: choice | |
| options: | |
| - 'INFO' | |
| - 'DEBUG' | |
| jobs: | |
| generate_reference_results_manual: | |
| uses: ./.github/workflows/generate-reference-results.yml | |
| with: | |
| suites: ${{ inputs.suites }} | |
| from_ref: ${{ inputs.from_ref }} | |
| commit_msg: ${{ inputs.commit_msg }} | |
| tutorials_ref_source: ${{ inputs.tutorials_ref_source }} | |
| build_args: ${{ inputs.build_args }} | |
| clean_docker: ${{ inputs.clean_docker }} | |
| log_level: ${{ inputs.log_level }} |