Skip to content

Add e2e tests to capture connectivity issues between Pods running on Control Plane nodes and the API server #1074

Add e2e tests to capture connectivity issues between Pods running on Control Plane nodes and the API server

Add e2e tests to capture connectivity issues between Pods running on Control Plane nodes and the API server #1074

Workflow file for this run

on: [push, pull_request]
name: Build
jobs:
build:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
goarch: [386, amd64, arm, arm64, ppc64le, s390x]
os: [ubuntu-latest] #, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Build
env:
GOARCH: ${{ matrix.goarch }}
GOOS: ${{ matrix.goos }}
run: ./hack/build-go.sh