Run workflow in debug and release configurations #1328
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: On PR | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
pre-commit: | |
uses: ./.github/workflows/pre-commit.yml | |
secrets: inherit | |
spdx: | |
uses: ./.github/workflows/spdx.yml | |
secrets: inherit | |
macos-build: | |
uses: ./.github/workflows/macos-build.yml | |
secrets: inherit | |
build-ci-image: | |
uses: ./.github/workflows/build-image.yml | |
secrets: inherit | |
build-ird-debug-image: | |
needs: build-ci-image | |
uses: ./.github/workflows/build-image.yml | |
secrets: inherit | |
with: | |
config: 'debug' | |
build-and-test-debug: | |
needs: build-ci-image | |
uses: ./.github/workflows/build-and-test.yml | |
secrets: inherit | |
with: | |
config: 'Debug' | |
build-and-test-release: | |
needs: build-ci-image | |
uses: ./.github/workflows/build-and-test.yml | |
secrets: inherit | |
with: | |
config: 'Release' |