Skip to content

Commit 7efb53e

Browse files
committed
more fixes on ci
1 parent b770e5a commit 7efb53e

File tree

1 file changed

+1
-24
lines changed

1 file changed

+1
-24
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff 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

@@ -67,18 +56,6 @@ jobs:
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"

0 commit comments

Comments
 (0)