-
Notifications
You must be signed in to change notification settings - Fork 29
45 lines (40 loc) · 924 Bytes
/
e2e.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
41
42
43
44
45
---
on:
pull_request:
branches:
- main
push:
branches:
- main
name: End-to-End (E2E) Tests
jobs:
test-e2e:
strategy:
fail-fast: true
matrix:
kubernetes:
- v1.23.10
max-parallel: 2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Go and ko
uses: ./.github/actions/setup
- uses: helm/[email protected]
with:
version: v0.15.0
node_image: kindest/node:${{ matrix.kubernetes }}
cluster_name: kind
config: test/kind/config.yaml
wait: 120s
- uses: shipwright-io/setup@v1
with:
tekton-version: v0.38.3
shipwright-ref: v0.11.0
cli-ref: _ignore
- name: CLI Build (shp)
run: make build
- name: End-to-End Tests
run: make test-e2e