We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98554cb commit fc42834Copy full SHA for fc42834
.github/workflows/blockifier_compiled_cairo.yml
@@ -26,8 +26,22 @@ concurrency:
26
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
27
28
jobs:
29
+ # https://graphite.com/docs/stacking-and-ci
30
+ optimize_ci:
31
+ runs-on: namespace-profile-small-ubuntu-24-04-amd64
32
+ outputs:
33
+ skip: ${{ steps.check_skip.outputs.skip }}
34
+ steps:
35
+ - name: Optimize CI
36
+ id: check_skip
37
+ uses: withgraphite/graphite-ci-action@main
38
+ with:
39
+ graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}
40
+
41
verify_cairo_file_dependencies:
42
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
43
+ needs: optimize_ci
44
+ if: needs.optimize_ci.outputs.skip == 'false'
45
steps:
46
- uses: actions/checkout@v6
47
- uses: ./.github/actions/bootstrap
0 commit comments