Skip to content

Commit

Permalink
test(windows): always test sync mode config validation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Nov 10, 2023
1 parent 5ea4dcf commit a6c4ced
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .circleci/continue-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1053,9 +1053,25 @@ jobs:
command: |
.\dist\windows-amd64\garden.exe deploy --root .\examples\demo-project\ --logger-type basic --log-level silly --env remote --force-build --var userId=$env:CIRCLE_BUILD_NUM-win
- run:
name: Cleanup
name: Cleanup demo-project
command: (kubectl delete namespace --wait=false demo-project-testing-$env:CIRCLE_BUILD_NUM-win) -or $true
when: always
- run:
name: Validate vote-helm project # to validate the sync mode paths on Windows with action-based configs
command: |
.\dist\windows-amd64\garden.exe validate --root .\e2e\projects\vote-helm\ --logger-type basic --log-level silly --env testing --var userId=$env:CIRCLE_BUILD_NUM-win
- run:
name: Cleanup vote-helm project
command: (kubectl delete namespace --wait=false vote-helm-testing-$env:CIRCLE_BUILD_NUM-win) -or $true
when: always
- run:
name: Validate vote-helm-modules project # to validate the sync mode paths on Windows with module-based configs
command: |
.\dist\windows-amd64\garden.exe validate --root .\e2e\projects\vote-helm-modules\ --logger-type basic --log-level silly --env testing --var userId=$env:CIRCLE_BUILD_NUM-win
- run:
name: Cleanup vote-helm-modules project
command: (kubectl delete namespace --wait=false vote-helm-modules-testing-$env:CIRCLE_BUILD_NUM-win) -or $true
when: always
- fail_fast

workflows:
Expand Down

0 comments on commit a6c4ced

Please sign in to comment.