-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
CI Run all CI jobs on azure nightly #23118
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
CI Run all CI jobs on azure nightly #23118
Conversation
I don't understand how but you managed to trigger the same failures as in #22905 (but on linux) Edit: actually I think it's starting to pop everywhere |
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.
LGTM.
Regardless of the outcome of #23110 I think we should enable all jobs on the azure daily job
@thomasjpfan I extracted the distutils fix into a separate PR (#23120) because it's unrelated to this PR and should be merged asap while this one might trigger some discussions |
This reverts commit ec7885a.
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 am fine with the idea when used in conjunction with #23110 but I am not so sure about the following change:
@@ -81,7 +81,6 @@ jobs: | |||
# Tests that require large downloads over the networks are skipped in CI. | |||
# Here we make sure, that they are still run on a regular basis. | |||
SKLEARN_SKIP_NETWORK_TESTS: '0' | |||
CREATE_ISSUE_ON_TRACKER: 'true' |
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.
CREATE_ISSUE_ON_TRACKER: 'true'
is only set by default in posix-docker.yml
, not in poxix.yml
, right?
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.
Yea, that was a mistake. I updated the PR to set CREATE_ISSUE_ON_TRACKER
to true on posix.yml
as well.
Let's try this! |
Reference Issues/PRs
Related to #23110
What does this implement/fix? Explain your changes.
I think it makes sense to run all the CI jobs on azure nightly. This PR also sets the default
CREATE_ISSUE_ON_TRACKER
to true so that nightly errors create issues on the tracker automatically. Note thatCREATE_ISSUE_ON_TRACKER
is only active for nightly builds:scikit-learn/build_tools/azure/posix.yml
Lines 82 to 83 in 28db349