hotfix: set version to tag if commitid is empty in github action work… #317
Workflow file for this run
This file contains 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
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 istio/examples-bookinfo-details-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-ratings-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-reviews-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-productpage-v1:1.16.2 | |
minikube image load --remote naison/authors:latest | |
minikube image load --remote nginx:latest | |
minikube image load --remote naison/kubevpn:test | |
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.ref }} | |
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 |