Skip to content

Commit

Permalink
#14111: Add option to run post-commit in different build modes (`Debu…
Browse files Browse the repository at this point in the history
…g` etc), while still in `Release` on main (#14151) [skip ci]

* #14111: Add build types to post-commit

* #0: REVERT ME DO NOT COMMIT  - add this branch as push to test

* Revert "#0: REVERT ME DO NOT COMMIT  - add this branch as push to test"

This reverts commit c86f6fe.
  • Loading branch information
tt-rkim authored Oct 23, 2024
1 parent 0d3fb48 commit f3bb40c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/all-post-commit-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ name: "All post-commit tests"
on:
workflow_call:
workflow_dispatch:
inputs:
build-type:
required: false
default: Release
type: choice
options:
- Release
- Debug
- RelWithDebInfo
- CI
push:
branches: ["main"]

Expand Down Expand Up @@ -54,12 +64,14 @@ jobs:
secrets: inherit
with:
build-docker: false
build-type: ${{ inputs.build-type || 'Release' }}
build-artifact-profiler:
needs: build-docker-image-2004
uses: ./.github/workflows/build-artifact.yaml
with:
tracy: true
build-docker: false
build-type: ${{ inputs.build-type || 'Release' }}
secrets: inherit
# UMD Unit Tests
umd-unit-tests:
Expand Down

0 comments on commit f3bb40c

Please sign in to comment.