Skip to content

Commit b5957e6

Browse files
committed
.github/test-pr: specify job name to avoid renaming on parameter changes
1 parent a6f4e8b commit b5957e6

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/test-pr.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,30 +103,36 @@ jobs:
103103
docker stop --time=0 kevm-ci-concrete-${{ github.sha }}
104104
105105
test-prove:
106-
name: 'Build and Test KEVM proofs'
106+
name: 'Proofs: ${{ matrix.name }}'
107+
run-name: 'Proofs: ${{ matrix.name }}'
107108
needs: kevm-pyk-code-quality-checks
108109
runs-on: [self-hosted, linux, fast]
109110
strategy:
110111
fail-fast: false
111112
matrix:
112113
include:
113-
- test-suite: 'test-prove-rules'
114+
- name: 'Rules (booster)'
115+
test-suite: 'test-prove-rules'
114116
test-args:
115117
timeout: 100
116118
parallel: 8
117-
- test-suite: 'test-prove-rules'
119+
- name: 'Rules (booster-dev)'
120+
test-suite: 'test-prove-rules'
118121
test-args: '--use-booster-dev'
119122
timeout: 45
120123
parallel: 8
121-
- test-suite: 'test-prove-functional'
124+
- name: 'Functional'
125+
test-suite: 'test-prove-functional'
122126
test-args:
123127
timeout: 45
124128
parallel: 4
125-
- test-suite: 'test-prove-optimizations'
129+
- name: 'Optimizations'
130+
test-suite: 'test-prove-optimizations'
126131
test-args:
127132
timeout: 45
128133
parallel: 1
129-
- test-suite: 'test-prove-dss'
134+
- name: 'DSS'
135+
test-suite: 'test-prove-dss'
130136
test-args:
131137
timeout: 45
132138
parallel: 1

0 commit comments

Comments
 (0)