-
Notifications
You must be signed in to change notification settings - Fork 24
127 lines (111 loc) · 2.98 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
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 }}
kam: "latest"
kamel: "latest"
opm: "latest"
# operator-sdk: "latest" # Not available on windows
kn: "latest"
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
kam version
kamel version
opm version
kn 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 }}
kam: "0.0.30"
kamel: "1"
opm: "1"
kn: "0.21"
s2i: "1.2"
# operator-sdk: "1" # Not available on windows
tkn: "0.17"
yq: "4.9"
- name: Echo output of installer
if: always()
run: echo "${{ steps.install_clients.outputs.installed }}"
- name: Run installed tools
shell: bash
run: |
set -x
kam version
kamel version
opm version
kn 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: ${{ matrix.version }}
- name: Echo output of installer
if: always()
run: echo "${{ steps.install_clients.outputs.installed }}"
- name: Run installed tools
run: |
set -x
operator-sdk version