Skip to content

Commit

Permalink
CircleCI: name jobs in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanjiang Yu committed Jun 21, 2019
1 parent e973484 commit ed6dc8f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,76 +114,95 @@ workflows:
jobs:
- build_and_push_base_image:
<<: *base_image_common
name: build_and_push_base_image@lint
dockerfile: Dockerfile.lint
tag: lint
- build_and_push_base_image:
<<: *base_image_common
name: [email protected]
dockerfile: Dockerfile.bch
tag: bch-0.18.5
- build_and_push_base_image:
<<: *base_image_common
name: [email protected]
dockerfile: Dockerfile.btc
tag: btc-0.16.3
- build_and_push_base_image:
<<: *base_image_common
name: [email protected]
dockerfile: Dockerfile.sbtc
tag: sbtc-0.16.2
- build_and_push_base_image:
<<: *base_image_common
name: [email protected]
dockerfile: Dockerfile.ubtc
tag: ubtc-2.5.0.1
- build_and_push_base_image:
<<: *base_image_common
name: [email protected]
dockerfile: Dockerfile.ltc
tag: ltc-0.16.3
- build_and_push_base_image:
<<: *base_image_common
name: [email protected]
dockerfile: Dockerfile.zec
tag: zec-2.0.4
build_and_run_unit_tests_all_chains:
jobs:
- check_clang_format
- build_and_run_unit_tests:
name: [email protected]
base: bch-0.18.5
requires:
- check_clang_format
- build_and_run_unit_tests:
name: [email protected]
base: btc-0.16.3
requires:
- check_clang_format
- build_and_run_unit_tests:
name: [email protected]
base: sbtc-0.16.2
requires:
- check_clang_format
- build_and_run_unit_tests:
name: [email protected]
base: ubtc-2.5.0.1
requires:
- check_clang_format
- build_and_run_unit_tests:
name: [email protected]
base: ltc-0.16.3
requires:
- check_clang_format
- build_and_run_unit_tests:
name: [email protected]
base: zec-2.0.4
requires:
- check_clang_format
build_and_push_deploy_images:
jobs:
- build_and_push_deploy_image:
<<: *deploy_image_common
name: [email protected]
base: bch-0.18.5
- build_and_push_deploy_image:
<<: *deploy_image_common
name: [email protected]
base: btc-0.16.3
- build_and_push_deploy_image:
<<: *deploy_image_common
name: [email protected]
base: sbtc-0.16.2
- build_and_push_deploy_image:
<<: *deploy_image_common
name: [email protected]
base: ubtc-2.5.0.1
- build_and_push_deploy_image:
<<: *deploy_image_common
name: [email protected]
base: ltc-0.16.3
- build_and_push_deploy_image:
<<: *deploy_image_common
name: [email protected]
base: zec-2.0.4

0 comments on commit ed6dc8f

Please sign in to comment.