From 5ef7ce808dcf202515ec567c4c97e6db8078c694 Mon Sep 17 00:00:00 2001 From: Brian Faust Date: Fri, 29 Mar 2019 19:44:30 +0200 Subject: [PATCH] chore(ci): explicitly name integration test jobs (#2340) --- .circleci/config.yml | 24 ++++++++++++------------ .circleci/configTemplate.json | 6 +++--- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7a93e928d7..0eb1d71151 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -340,7 +340,7 @@ jobs: - run: name: Codecov command: ./node_modules/.bin/codecov - test-node10-0: + test-node10-integration-0: working_directory: ~/core environment: CORE_DB_DATABASE: core_unitnet @@ -425,7 +425,7 @@ jobs: - run: name: Codecov command: ./node_modules/.bin/codecov - test-node11-0: + test-node11-integration-0: working_directory: ~/core environment: CORE_DB_DATABASE: core_unitnet @@ -510,7 +510,7 @@ jobs: - run: name: Codecov command: ./node_modules/.bin/codecov - test-node10-1: + test-node10-integration-1: working_directory: ~/core environment: CORE_DB_DATABASE: core_unitnet @@ -625,7 +625,7 @@ jobs: - run: name: Codecov command: ./node_modules/.bin/codecov - test-node10-2: + test-node10-integration-2: working_directory: ~/core environment: CORE_DB_DATABASE: core_unitnet @@ -734,7 +734,7 @@ jobs: - run: name: Codecov command: ./node_modules/.bin/codecov - test-node11-1: + test-node11-integration-1: working_directory: ~/core environment: CORE_DB_DATABASE: core_unitnet @@ -849,7 +849,7 @@ jobs: - run: name: Codecov command: ./node_modules/.bin/codecov - test-node11-2: + test-node11-integration-2: working_directory: ~/core environment: CORE_DB_DATABASE: core_unitnet @@ -966,9 +966,9 @@ workflows: - test-node11-unit - test-node10-functional - test-node11-functional - - test-node10-0 - - test-node11-0 - - test-node10-1 - - test-node10-2 - - test-node11-1 - - test-node11-2 + - test-node10-integration-0 + - test-node11-integration-0 + - test-node10-integration-1 + - test-node10-integration-2 + - test-node11-integration-1 + - test-node11-integration-2 diff --git a/.circleci/configTemplate.json b/.circleci/configTemplate.json index ac79c41bd6..b372c856fa 100644 --- a/.circleci/configTemplate.json +++ b/.circleci/configTemplate.json @@ -357,7 +357,7 @@ } ] }, - "test-node10-0": { + "test-node10-integration-0": { "working_directory": "~/core", "environment": { "CORE_DB_DATABASE": "core_unitnet", @@ -446,7 +446,7 @@ } ] }, - "test-node11-0": { + "test-node11-integration-0": { "working_directory": "~/core", "environment": { "CORE_DB_DATABASE": "core_unitnet", @@ -539,7 +539,7 @@ "workflows": { "version": 2, "build_and_test": { - "jobs": ["test-node10-0", "test-node11-0"] + "jobs": ["test-node10-integration-0", "test-node11-integration-0"] } } }