File tree Expand file tree Collapse file tree 1 file changed +1
-24
lines changed
Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -27,23 +27,12 @@ jobs:
2727 primary-os : ${{ needs.load-config.outputs.primary-os }}
2828 primary-python : ${{ needs.load-config.outputs.primary-python }}
2929
30- # ============================================================
31- # Benchmark Job
32- # ============================================================
33- benchmark :
34- needs : [load-config, test]
35- if : needs.load-config.outputs.enable-benchmark == 'true'
36- uses : ./.github/workflows/_benchmark.yml
37- with :
38- primary-os : ${{ needs.load-config.outputs.primary-os }}
39- primary-python : ${{ needs.load-config.outputs.primary-python }}
40-
4130 # ============================================================
4231 # Summary
4332 # ============================================================
4433 summary :
4534 name : CI Summary
46- needs : [load-config, test, benchmark ]
35+ needs : [load-config, test]
4736 if : always()
4837 runs-on : ubuntu-latest
4938
6756 echo "⊘ Tests: DISABLED"
6857 fi
6958
70- # Benchmark
71- if [ "${{ needs.load-config.outputs.enable-benchmark }}" == "true" ]; then
72- if [ "${{ needs.benchmark.result }}" == "success" ]; then
73- echo "✅ Benchmark: PASSED"
74- else
75- echo "❌ Benchmark: FAILED"
76- EXIT_CODE=1
77- fi
78- else
79- echo "⊘ Benchmark: DISABLED"
80- fi
81-
8259 echo ""
8360 if [ "${EXIT_CODE:-0}" == "1" ]; then
8461 echo "❌ CI Pipeline FAILED"
You can’t perform that action at this time.
0 commit comments