fix(ci): run e2e tests on pull requests#114
Merged
Merged
Conversation
Remove the condition that restricted the test-e2e job to main branch and tags only, so integration tests run on every PR. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The TestKernelCapabilities/vrf_module e2e test creates a VRF device inside a privileged pod to verify the host kernel supports VRF. On GitHub Actions ubuntu-24.04 runners the vrf module is available but not loaded by default, causing `ip link add ... type vrf` to fail with "RTNETLINK answers: Operation not supported". Load the module explicitly before creating the Kind cluster so the test environment matches what galactic requires at runtime. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The vrf kernel module is not preinstalled on GitHub-hosted Ubuntu runners. On Azure-optimized kernels, vrf.ko lives in linux-modules-extra-azure which must be explicitly installed before modprobe vrf can succeed. Using the unversioned metapackage avoids version-mismatch failures as the runner kernel ages between image rebuilds. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
scotwells
approved these changes
Jun 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
if:condition that restricted thetest-e2ejob tomainbranch and tags onlyTest plan
E2E Testsjob appears and runs in CI🤖 Generated with Claude Code