-
Notifications
You must be signed in to change notification settings - Fork 442
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
Remove unused is-slow-ci
input from fast and slow integration testing
#2382
Conversation
Important Auto Review SkippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the WalkthroughThe updates involve refining the conditional logic in GitHub Actions workflows, specifically for integration tests. These modifications introduce a new operating system option, Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
@coderabbitai review |
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.
Review Status
Actionable comments generated: 1
Configuration used: .coderabbit.yaml
Files selected for processing (2)
- .github/workflows/integration-test-fast.yml (3 hunks)
- .github/workflows/integration-test-slow.yml (3 hunks)
Additional comments: 7
.github/workflows/integration-test-fast.yml (3)
- 132-135: The conditional check for OS options and test environments is correctly updated to include
ubuntu-dind-runners
. This change aligns with the PR objectives to enhance compatibility with additional operating system environments.- 167-167: The conditional check for installing Linux system dependencies has been correctly updated to include
ubuntu-dind-runners
. This ensures that necessary dependencies are installed for the new environment.- 194-194: The conditional check for installing
kubectl
on Linux has been correctly updated to includeubuntu-dind-runners
. This is crucial for ensuring Kubernetes command-line tool compatibility across different CI environments..github/workflows/integration-test-slow.yml (4)
- 124-127: The conditional check for maximizing space for Docker has been correctly updated to include
ubuntu-dind-runners
. This modification is essential for ensuring that Docker has sufficient space to operate in the new environment.- 130-133: The conditional check for reloading Docker has been correctly updated to include
ubuntu-dind-runners
. This step is crucial for ensuring Docker's proper functioning in the new CI environment.- 165-165: The conditional check for installing Linux system dependencies has been correctly updated to include
ubuntu-dind-runners
. This ensures that necessary dependencies are installed for the new environment, aligning with the PR's objectives.- 192-192: The conditional check for installing
kubectl
on Linux has been correctly updated to includeubuntu-dind-runners
. This is crucial for ensuring Kubernetes command-line tool compatibility across different CI environments.
ubuntu-dind-runners
is-slow-ci
input from fast and slow integration testing
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.
🦭
…ng (zenml-io#2382) * update conditional checks * remove gh actions runners-specific code * further removal * docker reload also limited * formatting * remove is-slow-ci input
This pull request updates the conditional checks in the code to include the 'ubuntu-dind-runners' operating system as well. This ensures that the code works correctly on both 'ubuntu-latest' and 'ubuntu-dind-runners' environments.
Summary by CodeRabbit
ubuntu-dind-runners
, in both fast and slow integration tests.