Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,11 @@ jobs:
- name: Build binary
run: task build

# Tier 2: Integration tests (main branch and releases)
# Tier 2: Integration tests (every PR, main branch, and releases)
test-e2e:
name: E2E Tests
runs-on: ubuntu-latest
needs: [lint, test-unit, build]
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v6

Expand Down
5 changes: 5 additions & 0 deletions scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ case "$COMMAND" in

trap 'kind delete cluster --name "$CLUSTER_NAME"' EXIT

echo "--- Loading kernel modules required by galactic"
sudo apt-get update -qq
sudo apt-get install -y --no-install-recommends linux-modules-extra-azure
sudo modprobe vrf

echo "--- Installing kind"
go install sigs.k8s.io/kind@latest

Expand Down
Loading