@@ -32,7 +32,7 @@ mainBuildFilters: &mainBuildFilters
32
32
- ' update-v8-snapshot-cache-on-develop'
33
33
- ' chore/update_vue_test_utils'
34
34
- ' publish-binary'
35
- - ' cacie/29590/document-domain-subdomains '
35
+ - ' chore/fix_windows_kitchensink '
36
36
37
37
# usually we don't build Mac app - it takes a long time
38
38
# but sometimes we want to really confirm we are doing the right thing
@@ -80,7 +80,7 @@ windowsWorkflowFilters: &windows-workflow-filters
80
80
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
81
81
- equal : [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
82
82
- equal : [ 'ryanm/chore/electron-33-upgrade', << pipeline.git.branch >> ]
83
- - equal : [ 'cacie/fix-hook-test-stack-analysis ', << pipeline.git.branch >> ]
83
+ - equal : [ 'chore/fix_windows_kitchensink ', << pipeline.git.branch >> ]
84
84
- matches :
85
85
pattern : /^release\/\d+\.\d+\.\d+$/
86
86
value : << pipeline.git.branch >>
@@ -156,7 +156,7 @@ commands:
156
156
name : Set environment variable to determine whether or not to persist artifacts
157
157
command : |
158
158
echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
159
- echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/update_vue_test_utils" && "$CIRCLE_BRANCH" != cacie/fix-hook-test-stack-analysis ]]; then
159
+ echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/update_vue_test_utils" && "$CIRCLE_BRANCH" != chore/fix_windows_kitchensink ]]; then
160
160
export SHOULD_PERSIST_ARTIFACTS=true
161
161
fi' >> "$BASH_ENV"
162
162
# You must run `setup_should_persist_artifacts` command and be using bash before running this command
@@ -908,10 +908,6 @@ commands:
908
908
description : Pull request number to check out before installing and testing
909
909
type : integer
910
910
default : 0
911
- wait-on :
912
- description : Whether to use wait-on to wait on a server to be booted
913
- type : string
914
- default : " "
915
911
server-start-command :
916
912
description : Server start command for repo
917
913
type : string
@@ -1113,11 +1109,17 @@ commands:
1113
1109
source ./ci-ensure-node.sh
1114
1110
<<parameters.server-start-command>>
1115
1111
background : true
1116
- - run :
1117
- condition : <<parameters.wait-on>>
1118
- name : " Waiting on server to boot: <<parameters.wait-on>>"
1119
- command : |
1120
- npx wait-on <<parameters.wait-on>> --timeout 120000
1112
+ - when :
1113
+ condition :
1114
+ not :
1115
+ equal : [ "", <<parameters.wait-on>> ]
1116
+ steps :
1117
+ - run :
1118
+ name : " Waiting on server to boot: <<parameters.wait-on>>"
1119
+ command : |
1120
+ npm i -g wait-on
1121
+ npx wait-on <<parameters.wait-on>> --timeout 120000
1122
+
1121
1123
- windows-install-chrome :
1122
1124
browser : <<parameters.browser>>
1123
1125
- when :
@@ -2769,7 +2771,6 @@ jobs:
2769
2771
- test-binary-against-rwa :
2770
2772
repo : cypress-realworld-app
2771
2773
browser : chrome
2772
- wait-on : http://localhost:3000
2773
2774
2774
2775
test-binary-as-specific-user :
2775
2776
<< : *defaults
0 commit comments