-
Notifications
You must be signed in to change notification settings - Fork 107
51 lines (42 loc) · 1.05 KB
/
olm_tests.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
46
47
48
49
50
51
name: olm
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: '1.23'
KIND_IMG_TAG: v1.30.0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
main:
name: tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Download binaries
run: |
mkdir -p ${GITHUB_WORKSPACE}/build
echo "${GITHUB_WORKSPACE}/build" >> ${GITHUB_PATH}
make operator-sdk
make opm
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo ./hack/install-packages
./hack/install-crun
- name: Create and verify bundle
run: |
make verify-bundle
- name: Create and set up K8s KinD Cluster
run: |
./hack/kind-with-registry.sh
- name: Run the tests
run: ./hack/ci/e2e-olm.sh
env:
XDG_RUNTIME_DIR: ''