-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Optimize CI #9857
Optimize CI #9857
Conversation
To be rebased now that #9829 is merged. Also, could you move the simple example build out of the typecheck step to reduce the build time? |
@@ -71,6 +94,7 @@ jobs: | |||
|
|||
e-commerce: | |||
runs-on: ubuntu-latest | |||
needs: [typecheck] |
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.
Now depends on the typecheck
job. The build
step also run a typecheck on the e-commerce demo
@@ -100,6 +128,7 @@ jobs: | |||
|
|||
crm: | |||
runs-on: ubuntu-latest | |||
needs: [typecheck] |
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.
Now depends on the typecheck
job. The build
step also run a typecheck on the crm demo
Parallelize the CI steps to avoid rebuilding the project several times. This should reduce the total number of CI minutes consumed for each build, at the price of a slightly longer build (because we need to reinstall yarn dependencies).
Build time
Total build time