asd
All checks were successful
Tests / Run on Ubuntu (push) Successful in 4m47s
Lint / Run on Ubuntu (push) Successful in 5m18s
E2E Tests / Run on Ubuntu (push) Successful in 10m42s

This commit is contained in:
Chris Richardson
2025-05-12 14:52:38 -04:00
parent 26d30e3b3c
commit 1564c26dbf

View File

@@ -17,17 +17,6 @@ jobs:
with:
go-version-file: go.mod
- name: Install docker
run: |
apt update
apt install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update
apt install -y docker-ce docker-ce-cli containerd.io
dockerd &
docker --version
- name: Install kubectl
run: |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/arm64/kubectl"
@@ -46,15 +35,11 @@ jobs:
- name: Create kind cluster
run: kind create cluster
# - name: Move network
# run: |
# docker network disconnect kind kind-control-plane
# docker network connect bridge kind-control-plane
# - name: Sleep for cluster create
# run: sleep 600
- name: Running Test e2e
run: |
go mod tidy
make test-e2e
- name: Delete kind cluster
run: kind delete cluster