-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix kitchensink windows #30909
Open
AtofStryker
wants to merge
1
commit into
develop
Choose a base branch
from
chore/fix_windows_kitchensink
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+7
−8
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ mainBuildFilters: &mainBuildFilters | |
- 'update-v8-snapshot-cache-on-develop' | ||
- 'chore/update_vue_test_utils' | ||
- 'publish-binary' | ||
- 'cacie/29590/document-domain-subdomains' | ||
- 'chore/fix_windows_kitchensink' | ||
|
||
# usually we don't build Mac app - it takes a long time | ||
# but sometimes we want to really confirm we are doing the right thing | ||
|
@@ -80,7 +80,7 @@ windowsWorkflowFilters: &windows-workflow-filters | |
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested | ||
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ] | ||
- equal: [ 'ryanm/chore/electron-33-upgrade', << pipeline.git.branch >> ] | ||
- equal: [ 'cacie/fix-hook-test-stack-analysis', << pipeline.git.branch >> ] | ||
- equal: [ 'chore/fix_windows_kitchensink', << pipeline.git.branch >> ] | ||
- matches: | ||
pattern: /^release\/\d+\.\d+\.\d+$/ | ||
value: << pipeline.git.branch >> | ||
|
@@ -156,7 +156,7 @@ commands: | |
name: Set environment variable to determine whether or not to persist artifacts | ||
command: | | ||
echo "Setting SHOULD_PERSIST_ARTIFACTS variable" | ||
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/update_vue_test_utils" && "$CIRCLE_BRANCH" != cacie/fix-hook-test-stack-analysis ]]; then | ||
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/update_vue_test_utils" && "$CIRCLE_BRANCH" != chore/fix_windows_kitchensink ]]; then | ||
export SHOULD_PERSIST_ARTIFACTS=true | ||
fi' >> "$BASH_ENV" | ||
# You must run `setup_should_persist_artifacts` command and be using bash before running this command | ||
|
@@ -908,10 +908,6 @@ commands: | |
description: Pull request number to check out before installing and testing | ||
type: integer | ||
default: 0 | ||
wait-on: | ||
description: Whether to use wait-on to wait on a server to be booted | ||
type: string | ||
default: "" | ||
server-start-command: | ||
description: Server start command for repo | ||
type: string | ||
|
@@ -1117,6 +1113,7 @@ commands: | |
condition: <<parameters.wait-on>> | ||
name: "Waiting on server to boot: <<parameters.wait-on>>" | ||
command: | | ||
npm i -g wait-on | ||
npx wait-on <<parameters.wait-on>> --timeout 120000 | ||
- windows-install-chrome: | ||
browser: <<parameters.browser>> | ||
|
@@ -2715,20 +2712,23 @@ jobs: | |
- test-binary-against-repo: | ||
repo: cypress-example-kitchensink | ||
browser: electron | ||
wait-on: http://localhost:8080 | ||
|
||
test-binary-against-kitchensink-firefox: | ||
<<: *defaults | ||
steps: | ||
- test-binary-against-repo: | ||
repo: cypress-example-kitchensink | ||
browser: firefox | ||
wait-on: http://localhost:8080 | ||
|
||
test-binary-against-kitchensink-chrome: | ||
<<: *defaults | ||
steps: | ||
- test-binary-against-repo: | ||
repo: cypress-example-kitchensink | ||
browser: chrome | ||
wait-on: http://localhost:8080 | ||
|
||
test-binary-against-todomvc-firefox: | ||
<<: *defaults | ||
|
@@ -2769,7 +2769,6 @@ jobs: | |
- test-binary-against-rwa: | ||
repo: cypress-realworld-app | ||
browser: chrome | ||
wait-on: http://localhost:3000 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wasn't actually doing anything as wait-on wasn't defined |
||
|
||
test-binary-as-specific-user: | ||
<<: *defaults | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
param defined but isn't actually used