Add proof-producer-debug-gcc check in CI #1279
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: PR Testing | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- master | |
concurrency: | |
# In master we want to run for every commit, in other branches — only for the last one | |
group: ${{ | |
( github.ref == 'refs/heads/master' && format('{0}/{1}/{2}', github.workflow, github.ref, github.sha) ) | |
|| | |
format('{0}/{1}', github.workflow, github.ref) }} | |
cancel-in-progress: true | |
jobs: | |
test-linux-gcc: | |
name: Gcc release full Linux testing | |
uses: ./.github/workflows/gcc-linux-nix-check.yml | |
if: | | |
always() && !cancelled() | |
secrets: inherit | |
test-linux-clang: | |
name: Clang release full Linux testing | |
uses: ./.github/workflows/clang-linux-nix-check.yml | |
if: | | |
always() && !cancelled() | |
secrets: inherit | |
test-linux-proof-producer-debug-gcc: | |
name: Gcc debug proof-producer Linux testing | |
uses: ./.github/workflows/gcc-debug-proof-producer-nix-check.yml | |
if: | | |
always() && !cancelled() | |
secrets: inherit | |
check-proof-producer: | |
name: Check Proof Producer | |
uses: ./.github/workflows/check-proof-producer.yml | |
if: | | |
always() && !cancelled() | |
secrets: inherit | |
verify-circuit-proof: | |
name: Verify Circuit Proof | |
uses: ./.github/workflows/verify-circuit-proof.yml | |
if: | | |
always() && !cancelled() | |
secrets: inherit |