-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
build: add quic to github action #34336
Conversation
Mac failure should resolved by #34335 |
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.
I do not oppose testing quic with GitHub actions as long as @nodejs/quic will put in the effort to keep it green. As this PR currently stands though it is removing the testing of the default configuration.
Need to add extra flag to |
My point is this PR changes the existing build/test workflows to add the configuration flag for quic which means we no longer build/test the non-quic (i.e. default) build configuration with actions. |
We definitely should add a configuration to test QUIC but I'm thinking that, for now, it should be a separate action without modifying any of the existing actions. @richardlau ... every QUIC PR should be green at this point tho issues do sneak in given the heavy development. |
As far as I know, this is a superset of current build and test. And jenkins still run the old good without quic version. Any other potential problem I am not aware of ? |
We don't require Jenkins CI runs for doc only changes. The GitHub actions are supposed to be the equivalent of the old ci-lite jobs, one of which was a build and test (in addition to the linters). This is because changes to docs may affect test cases, for example some addons tests are based on the code examples in the markdown files and I'd like to keep that with the default configuration. |
I have not touch the test configuration. Adding |
Yes, the binary being tested is built with non-default configuration options. |
But tbh it only add extra quic function, not removing anything or bypass test case. If you insist on this, I can add an extra action to do this, but we will have three more github action. Second thought ? |
My position is that I want to keep at least one build/test action job without quic enabled since we do not require a Jenkins CI for doc-only changes. I would be okay if that was the one that is part of the "Build from tarball" workflow but it looks like that might get removed (#34440 and #34123). I would also prefer if the name of the job name of the jobs that were quic enabled included that information (e.g. something like "test-linux / test-linux-with-quic") to indicate it's a non-default build. |
Renamed pipeline and add an extra good old pipeline without quic :) |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
PR-URL: #34336 Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #34336 Reviewed-By: James M Snell <jasnell@gmail.com>
Landed in 1f94b89...7a5fbaf |
Fix #33967
Now blocked by https://github.com//issues/34435.