Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
paths:
- .

build_sh_reactiveapi:
build_reactiveapi:
docker:
- image: microsoft/dotnet:2.1-sdk
steps:
Expand All @@ -61,7 +61,7 @@ jobs:
- packaging
- nuget

build_sh_intergration_test_reactiveapi:
build_integration_test:
docker:
- image: microsoft/dotnet:2.1-sdk
steps:
Expand All @@ -88,7 +88,7 @@ jobs:
paths:
- docker

reactiveapi_integrationtests:
run_reactiveapi_integration_test:
docker:
- image: circleci/node:10.12
steps:
Expand Down Expand Up @@ -125,33 +125,33 @@ workflows:
only: /^[0-9]++\.[0-9]++\.[0-9]++/
branches:
only: /.*/
- build_sh_reactiveapi:
- build_reactiveapi:
requires:
- checkout_code
filters:
tags:
only: /^[0-9]++\.[0-9]++\.[0-9]++/
branches:
only: /.*/
- build_sh_intergration_test_reactiveapi:
- build_integration_test:
requires:
- build_sh_reactiveapi
- build_reactiveapi
filters:
tags:
only: /^[0-9]++\.[0-9]++\.[0-9]++/
branches:
only: /.*/
- reactiveapi_integrationtests:
- run_reactiveapi_integration_test:
requires:
- build_sh_intergration_test_reactiveapi
- build_integration_test
filters:
tags:
only: /^[0-9]++\.[0-9]++\.[0-9]++/
branches:
only: /.*/
- deploy_nuget:
requires:
- reactiveapi_integrationtests
- run_reactiveapi_integration_test
filters:
tags:
only: /^[0-9]++\.[0-9]++\.[0-9]++/
Expand Down