mirror of https://github.com/kubevela/kubevela.git
124 lines
3.0 KiB
YAML
124 lines
3.0 KiB
YAML
name: E2E Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
tags:
|
|
- v*
|
|
workflow_dispatch: {}
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
# Common versions
|
|
GO_VERSION: '1.23.8'
|
|
|
|
jobs:
|
|
|
|
detect-noop:
|
|
permissions:
|
|
actions: write
|
|
runs-on: ubuntu-22.04
|
|
outputs:
|
|
noop: ${{ steps.noop.outputs.should_skip }}
|
|
steps:
|
|
- name: Detect No-op Changes
|
|
id: noop
|
|
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
paths_ignore: '["**.md", "**.mdx", "**.png", "**.jpg"]'
|
|
do_not_skip: '["workflow_dispatch", "schedule", "push"]'
|
|
continue-on-error: true
|
|
|
|
e2e-tests:
|
|
runs-on: ubuntu-22.04
|
|
needs: [ detect-noop ]
|
|
if: needs.detect-noop.outputs.noop != 'true'
|
|
strategy:
|
|
matrix:
|
|
k8s-version: ["v1.29"]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.k8s-version }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
|
|
|
|
- name: Install tools
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install make gcc jq ca-certificates curl gnupg -y
|
|
sudo snap install kubectl --classic
|
|
sudo snap install helm --classic
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Get dependencies
|
|
run: |
|
|
go get -v -t -d ./...
|
|
|
|
- name: Setup KinD
|
|
run: |
|
|
go install sigs.k8s.io/kind@v0.24.0
|
|
kind delete cluster || true
|
|
kind create cluster --image=kindest/node:v1.29.8
|
|
|
|
- name: Get Ginkgo
|
|
run: |
|
|
go install github.com/onsi/ginkgo/v2/ginkgo@v2.14.0
|
|
|
|
- name: Load image
|
|
run: |
|
|
mkdir -p $HOME/tmp/
|
|
TMPDIR=$HOME/tmp/ make image-load
|
|
|
|
- name: Run Make
|
|
run: make
|
|
|
|
- name: Prepare for e2e tests
|
|
run: |
|
|
make e2e-cleanup
|
|
make e2e-setup-core
|
|
helm test -n vela-system kubevela --timeout 5m
|
|
|
|
- name: Run api e2e tests
|
|
run: make e2e-api-test
|
|
|
|
- name: Run addons e2e tests
|
|
run: make e2e-addon-test
|
|
|
|
- name: Run e2e tests
|
|
run: make e2e-test
|
|
|
|
- name: Stop kubevela, get profile
|
|
run: make end-e2e
|
|
|
|
- name: Upload coverage report
|
|
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
files: /tmp/e2e-profile.out
|
|
flags: e2etests
|
|
name: codecov-umbrella
|
|
|
|
- name: Clean e2e profile
|
|
run: rm /tmp/e2e-profile.out
|
|
|
|
- name: Cleanup image
|
|
if: ${{ always() }}
|
|
run: |
|
|
make image-cleanup
|
|
docker image prune -f --filter "until=24h"
|