From c0d057b29247871abba6759c726d050f60675048 Mon Sep 17 00:00:00 2001 From: fle-bach Date: Mon, 4 Mar 2019 14:24:01 +0100 Subject: [PATCH 1/3] change name jobs --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index afb46e7..e821aca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,7 @@ jobs: paths: - . - build_sh_reactiveapi: + build_reactiveapi: docker: - image: microsoft/dotnet:2.1-sdk steps: @@ -61,7 +61,7 @@ jobs: - packaging - nuget - build_sh_intergration_test_reactiveapi: + build_intergration_test: docker: - image: microsoft/dotnet:2.1-sdk steps: @@ -88,7 +88,7 @@ jobs: paths: - docker - reactiveapi_integrationtests: + run_reactiveapi_integrationtests: docker: - image: circleci/node:10.12 steps: @@ -125,7 +125,7 @@ workflows: only: /^[0-9]++\.[0-9]++\.[0-9]++/ branches: only: /.*/ - - build_sh_reactiveapi: + - build_reactiveapi: requires: - checkout_code filters: @@ -133,17 +133,17 @@ workflows: only: /^[0-9]++\.[0-9]++\.[0-9]++/ branches: only: /.*/ - - build_sh_intergration_test_reactiveapi: + - build_intergration_test: requires: - - build_sh_reactiveapi + - build_reactiveapi filters: tags: only: /^[0-9]++\.[0-9]++\.[0-9]++/ branches: only: /.*/ - - reactiveapi_integrationtests: + - run_reactiveapi_integrationtests: requires: - - build_sh_intergration_test_reactiveapi + - build_intergration_test filters: tags: only: /^[0-9]++\.[0-9]++\.[0-9]++/ @@ -151,7 +151,7 @@ workflows: only: /.*/ - deploy_nuget: requires: - - reactiveapi_integrationtests + - run_reactiveapi_integrationtests filters: tags: only: /^[0-9]++\.[0-9]++\.[0-9]++/ From 72f0f2df82127d68982883a07a3237a865d98f48 Mon Sep 17 00:00:00 2001 From: fle-bach Date: Mon, 4 Mar 2019 14:37:51 +0100 Subject: [PATCH 2/3] fix name integration --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e821aca..2e8f1db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -61,7 +61,7 @@ jobs: - packaging - nuget - build_intergration_test: + build_integration_test: docker: - image: microsoft/dotnet:2.1-sdk steps: @@ -133,7 +133,7 @@ workflows: only: /^[0-9]++\.[0-9]++\.[0-9]++/ branches: only: /.*/ - - build_intergration_test: + - build_integration_test: requires: - build_reactiveapi filters: @@ -143,7 +143,7 @@ workflows: only: /.*/ - run_reactiveapi_integrationtests: requires: - - build_intergration_test + - build_integration_test filters: tags: only: /^[0-9]++\.[0-9]++\.[0-9]++/ From fcc0c882a4cf13c2122ae6e3a521b0fc41387000 Mon Sep 17 00:00:00 2001 From: fle-bach Date: Mon, 4 Mar 2019 14:39:25 +0100 Subject: [PATCH 3/3] cut integration_test --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2e8f1db..7d6aefb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -88,7 +88,7 @@ jobs: paths: - docker - run_reactiveapi_integrationtests: + run_reactiveapi_integration_test: docker: - image: circleci/node:10.12 steps: @@ -141,7 +141,7 @@ workflows: only: /^[0-9]++\.[0-9]++\.[0-9]++/ branches: only: /.*/ - - run_reactiveapi_integrationtests: + - run_reactiveapi_integration_test: requires: - build_integration_test filters: @@ -151,7 +151,7 @@ workflows: only: /.*/ - deploy_nuget: requires: - - run_reactiveapi_integrationtests + - run_reactiveapi_integration_test filters: tags: only: /^[0-9]++\.[0-9]++\.[0-9]++/