forked from kubesphere/ks-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 1.03 KB
/
e2e.install.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: E2E - Chart Install
on:
pull_request:
paths-ignore:
- "**.md"
- "LICENSE"
- "docs/**"
- ".devcontainer/**"
- "*.ya?ml" # ignore all yaml files(with suffix yaml or yml) in the root of the repository
- "!codecov.yml"
- "!.golangci.yml"
- "!config/**"
- "OWNERS"
- "PROJECT"
jobs:
Install:
name: Chart Install
runs-on: ubuntu-20.04
timeout-minutes: 60
strategy:
matrix:
k8sVersion: ["1.19", "1.20", "1.21", "1.22"]
steps:
- uses: actions/checkout@v2
- name: Run E2E testing
uses: ./.github/e2e
env:
K8S_VERSION: ${{ matrix.k8sVersion }}
with:
config-file: chart-install/e2e.yaml
- name: Upload E2E Log
uses: actions/upload-artifact@v2
if: ${{ failure() }} # Only upload the artifact when E2E testing failure
with:
name: e2e-log
path: "${{ env.SW_INFRA_E2E_LOG_DIR }}" # The SkyWalking Infra E2E action sets SW_INFRA_E2E_LOG_DIR automatically.