-
Notifications
You must be signed in to change notification settings - Fork 24
165 lines (145 loc) · 4.12 KB
/
example_github.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: Install from GitHub Example
on:
push:
workflow_dispatch:
pull_request:
schedule:
- cron: '0 0 * * *' # every day at midnight
env:
SOURCE: github
jobs:
latest-version:
name: Latest version
strategy:
fail-fast: false
matrix:
os: [ "macos-latest", "windows-latest", "ubuntu-20.04" ]
cache: [ true, false ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ./
id: install_clients
with:
source: ${{ env.SOURCE }}
skip_cache: ${{ matrix.cache }}
github_pat: ${{ github.token }}
crda: "latest"
kam: "latest"
kamel: "latest"
kn: "latest"
# kustomize: "latest" # Temporarily Disable, see https://github.com/redhat-actions/openshift-tools-installer/issues/42
opm: "latest"
# operator-sdk: "latest" # Not available on windows
s2i: "latest"
tkn: "latest"
yq: "latest"
- name: Echo output of installer
if: always()
run: echo "${{ steps.install_clients.outputs.installed }}"
- name: Run installed tools
shell: bash
run: |
set -x
crda version
kam version
kamel version
kn version
# kustomize version
opm version
s2i version
tkn version || true
yq --version
known-version:
name: Known version
strategy:
fail-fast: false
matrix:
os: [ "macos-latest", "windows-latest", "ubuntu-20.04" ]
cache: [ true, false ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ./
id: install_clients
with:
source: ${{ env.SOURCE }}
skip_cache: ${{ matrix.cache }}
github_pat: ${{ github.token }}
crda: "0.2.3"
kam: "0.0.30"
kamel: "1"
kn: "0.21"
kustomize: "4.1"
opm: "1"
s2i: "1.2"
# operator-sdk: "1" # Not available on windows
tkn: "0.17"
yq: "3.4.1" # v3.4.1 comes in page 2 of the API response, this tests pagination
- name: Echo output of installer
if: always()
run: echo "${{ steps.install_clients.outputs.installed }}"
- name: Run installed tools
shell: bash
run: |
set -x
crda version
kam version
kamel version
kn version
kustomize version
opm version
s2i version
tkn version || true
yq --version
latest-version-linux-macos:
name: Latest version on linux & macOS
strategy:
fail-fast: false
matrix:
os: [ "macos-latest", "ubuntu-20.04" ]
cache: [ true, false ]
# version: [ "latest", "1" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ./
id: install_clients
with:
source: ${{ env.SOURCE }}
skip_cache: ${{ matrix.cache }}
github_pat: ${{ github.token }}
operator-sdk: "latest"
kustomize: "latest"
- name: Echo output of installer
if: always()
run: echo "${{ steps.install_clients.outputs.installed }}"
- name: Run installed tools
run: |
set -x
operator-sdk version
kustomize version
known-version-linux-macos:
name: Latest version on linux & macOS
strategy:
fail-fast: false
matrix:
os: [ "macos-latest", "ubuntu-20.04" ]
cache: [ true, false ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ./
id: install_clients
with:
source: ${{ env.SOURCE }}
skip_cache: ${{ matrix.cache }}
github_pat: ${{ github.token }}
operator-sdk: "1"
- name: Echo output of installer
if: always()
run: echo "${{ steps.install_clients.outputs.installed }}"
- name: Run installed tools
run: |
set -x
operator-sdk version