Skip to content

Commit

Permalink
fix: work around matrix restriction on status checks (#12173)
Browse files Browse the repository at this point in the history
and the merge-check is revived
  • Loading branch information
ludamad authored Feb 20, 2025
1 parent 7768ffe commit f7a65ee
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,16 @@ jobs:
run: |
./ci.sh ec2-test
# Necessary as github actions won't allow checks on matrix builds.
merge-check:
runs-on: ubuntu-20.04
needs: ci
if: always()
steps:
- name: Failing deploy
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1

notify:
runs-on: ubuntu-latest
if: github.event_name == 'push' && failure()
Expand Down

1 comment on commit f7a65ee

@AztecBot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'C++ Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.05.

Benchmark suite Current: f7a65ee Previous: 7768ffe Ratio
wasmconstruct_proof_ultrahonk_power_of_2/20 10968.120658 ms/iter 9772.573803 ms/iter 1.12

This comment was automatically generated by workflow using github-action-benchmark.

CC: @ludamad @codygunton

Please sign in to comment.