mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
78 lines
2.5 KiB
YAML
78 lines
2.5 KiB
YAML
name: Coverage
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.23'
|
|
check-latest: true
|
|
|
|
- name: Setup Minikube
|
|
id: minikube
|
|
timeout-minutes: 30
|
|
uses: medyagh/setup-minikube@latest
|
|
with:
|
|
cache: true
|
|
|
|
- name: Kubernetes info
|
|
run: |
|
|
kubectl cluster-info
|
|
cat ~/.kube/config
|
|
kubectl get pods -n kube-system -o wide
|
|
|
|
- name: Install demo bookinfo
|
|
run: |
|
|
minikube image load --remote ghcr.io/kubenetworks/examples-bookinfo-details-v1:1.20.2
|
|
minikube image load --remote ghcr.io/kubenetworks/examples-bookinfo-ratings-v1:1.20.2
|
|
minikube image load --remote ghcr.io/kubenetworks/examples-bookinfo-reviews-v1:1.20.2
|
|
minikube image load --remote ghcr.io/kubenetworks/examples-bookinfo-productpage-v1:1.20.2
|
|
minikube image load --remote ghcr.io/kubenetworks/authors:latest
|
|
minikube image load --remote ghcr.io/kubenetworks/nginx:latest
|
|
minikube image ls
|
|
eval $(minikube docker-env)
|
|
kubectl apply -f https://raw.githubusercontent.com/kubenetworks/kubevpn/master/samples/bookinfo.yaml
|
|
|
|
- name: Build
|
|
run: |
|
|
export VERSION=${{github.event.pull_request.head.sha}}
|
|
if [[ -z "$VERSION" ]]; then
|
|
export VERSION=${{ github.sha }}
|
|
fi
|
|
make kubevpn-linux-amd64
|
|
chmod +x ./bin/kubevpn
|
|
cp ./bin/kubevpn /usr/local/bin/kubevpn
|
|
kubevpn version
|
|
|
|
- name: Wait for pods reviews to be ready
|
|
run: |
|
|
kubectl wait pods -l app=reviews --for=condition=Ready --timeout=3600s
|
|
kubectl wait pods -l app=productpage --for=condition=Ready --timeout=3600s
|
|
kubectl get svc -A -o wide
|
|
kubectl get pod -A -o wide
|
|
kubectl get all -o wide
|
|
kubectl get nodes -o yaml
|
|
ifconfig
|
|
route -n
|
|
sudo ln /usr/bin/resolvectl /usr/bin/systemd-resolve
|
|
|
|
- name: Test
|
|
run: make ut
|
|
|
|
- name: Upload coverage reports to Codecov
|
|
uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4.0.2
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
with:
|
|
verbose: true
|
|
slug: wencaiwulue/kubevpn |