forked from kedacore/keda
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.48 KB
/
template-smoke-tests.yml
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
46
47
48
49
50
51
52
name: Reusable workflow to run smoke tests
on:
workflow_call:
inputs:
runs-on:
required: true
type: string
kubernetesVersion:
required: true
type: string
kindImage:
required: true
type: string
jobs:
smoke-tests:
name: Validate k8s-${{ inputs.kubernetesVersion }}
runs-on: ${{ inputs.runs-on }}
steps:
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
with:
go-version: "1.23"
- name: Install prerequisites
run: |
sudo apt update
sudo apt install curl make ca-certificates gcc libc-dev wget -y
env:
DEBIAN_FRONTEND: noninteractive
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Create k8s ${{ inputs.kubernetesVersion }} Kind Cluster
uses: helm/[email protected]
with:
node_image: ${{ inputs.kindImage }}
cluster_name: smoke-tests-cluster-${{ inputs.kubernetesVersion }}
- name: Run smoke test
run: make smoke-test
- name: Upload test logs
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
if: ${{ always() }}
with:
name: smoke-test-logs ${{ inputs.runs-on }}-${{ inputs.kubernetesVersion }}
path: "${{ github.workspace }}/**/*.log"
if-no-files-found: ignore