We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdae0bc commit 224e1dcCopy full SHA for 224e1dc
.github/workflows/upload_artifacts_workflow.yml
@@ -46,8 +46,22 @@ env:
46
RUSTFLAGS: "-D warnings"
47
48
jobs:
49
+ # https://graphite.com/docs/stacking-and-ci
50
+ optimize_ci:
51
+ runs-on: namespace-profile-small-ubuntu-24-04-amd64
52
+ outputs:
53
+ skip: ${{ steps.check_skip.outputs.skip }}
54
+ steps:
55
+ - name: Optimize CI
56
+ id: check_skip
57
+ uses: withgraphite/graphite-ci-action@main
58
+ with:
59
+ graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}
60
+
61
native-blockifier-artifacts-push:
62
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
63
+ needs: optimize_ci
64
+ if: needs.optimize_ci.outputs.skip == 'false'
65
steps:
66
- uses: actions/checkout@v6
67
0 commit comments