-
Notifications
You must be signed in to change notification settings - Fork 57
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
Add compile step before Cypress runs in CI #2187
Conversation
Signed-off-by: Simeon Widdis <[email protected]>
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.
Hi @Swiddis , thanks for taking this on! Just left a minor question about the timeout
Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
27ba559
to
22b1613
Compare
Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
* Add compile step before run step Signed-off-by: Simeon Widdis <[email protected]> * Remove wait-for-startup step Signed-off-by: Simeon Widdis <[email protected]> * Fix detection of server startup Signed-off-by: Simeon Widdis <[email protected]> * Fix cache finding no lock files Signed-off-by: Simeon Widdis <[email protected]> * Add caches for different package targets Signed-off-by: Simeon Widdis <[email protected]> * Fix caches Signed-off-by: Simeon Widdis <[email protected]> * Add yarn cache to regular unit tests Signed-off-by: Simeon Widdis <[email protected]> * Remove target cache in ftr Signed-off-by: Simeon Widdis <[email protected]> --------- Signed-off-by: Simeon Widdis <[email protected]> Signed-off-by: Simeon Widdis <[email protected]> (cherry picked from commit fb9027a) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
exit 1 | ||
fi | ||
fi& |
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.
if you put to background it will continue to next step even if http server running
didn't appear in dashboard.log
yet, right? and if 60 seconds passed, will exit 1
be able to abort the workflow if it has already moved to the next step?
Description
The current cypress runs are failing with the error
Timeout for 600 seconds reached. OpenSearch Dashboards did not finish compiling.
. By far, the longest step of OSD startup is compilation. A little poking around upstream reveals that there's a script that can frontload this compilation, so we can separate the server startup from the compile step. This PR applies this, and lowers the timeout since it no longer needs to be so high. It also adds some caching to reduce build times, although there's a bit more that needs to happen to make build times fast (namely, caching all the /target folders, see #2188).Issues Resolved
See above
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.