Skip to content

Commit e47418e

Browse files
authored
ci: fix job names across workflows (#1829)
1 parent 5c85c10 commit e47418e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -314,29 +314,29 @@ workflows:
314314
- build-windows
315315
- test
316316
- utp-test
317-
docker-master-commit:
317+
docker:
318318
jobs:
319319
- docker-build:
320-
name: docker_build__<< matrix.target >>
320+
name: docker-build-<< matrix.target >>
321321
tags: latest
322322
matrix:
323323
parameters:
324324
target: ["trin", "bridge", "e2hs-writer", "trin-execution"]
325325
- docker-publish:
326-
name: docker_publish__<< matrix.target >>
326+
name: docker-publish-<< matrix.target >>
327327
requires:
328-
- docker_build__<< matrix.target >>
328+
- docker-build-<< matrix.target >>
329329
filters:
330330
branches:
331331
only: master
332332
matrix:
333333
parameters:
334334
target: ["trin", "bridge", "e2hs-writer", "trin-execution"]
335-
docker-master-tag:
335+
docker-tag:
336336
when: << pipeline.git.tag >>
337337
jobs:
338338
- docker-build:
339-
name: docker_build__<< matrix.target >>
339+
name: docker-tag-build-<< matrix.target >>
340340
filters:
341341
tags:
342342
only: /^v\d+(\.\d+){0,2}(-\w*\.\d+)?$/
@@ -345,9 +345,9 @@ workflows:
345345
parameters:
346346
target: ["trin", "bridge", "e2hs-writer", "trin-execution"]
347347
- docker-publish:
348-
name: docker_publish_trin__<< matrix.target >>
348+
name: docker-tag-publish-<< matrix.target >>
349349
requires:
350-
- docker_build__<< matrix.target >>
350+
- docker-tag-build-<< matrix.target >>
351351
filters:
352352
tags:
353353
only: /^v\d+(\.\d+){0,2}(-\w*\.\d+)?$/

0 commit comments

Comments
 (0)