-
Notifications
You must be signed in to change notification settings - Fork 53
382 lines (382 loc) · 11.6 KB
/
environment.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
name: Environments build and test
on:
pull_request:
branches: [master]
jobs:
# Job to run change detection
check:
runs-on: ubuntu-latest
outputs:
packages: ${{ steps.filter.outputs.changes }}
steps:
- name: Checkout the current repo
uses: actions/checkout@v1
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/workflows/filters/filters.yaml
binary:
runs-on: ubuntu-latest
needs: check
if: contains( needs.check.outputs.packages, 'binary')
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: setup go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Unit test
run: |
pushd binary/
./test/local_test.sh
popd
- name: Helm
uses: Azure/setup-helm@v1
with:
version: v3.3.4
- name: Kind Cluster
uses: engineerd/[email protected]
with:
image: kindest/node:v1.21.1
version: v0.11.1
- name: Base Setup
run: |
make verify-kind-cluster
make install-fission-cli
make install-skaffold
make create-crds
- name: Fission and test images
run: |
SKAFFOLD_PROFILE=binary make skaffold-run
make binary-test-images
make router-port-forward
- name: binary-tests
run: ./test_utils/run_test.sh ./binary/test/test_binary_env.sh
- name: Collect Fission Dump
if: ${{ always() }}
run: |
command -v fission && fission support dump
- name: Archive fission dump
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: fission-dump
path: fission-dump/*.zip
retention-days: 5
go:
runs-on: ubuntu-latest
needs: check
if: contains( needs.check.outputs.packages, 'go' )
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Helm
uses: Azure/setup-helm@v1
with:
version: v3.3.4
- name: Kind Clutser
uses: engineerd/[email protected]
with:
image: kindest/node:v1.21.1
version: v0.11.1
config: kind.yaml
- name: Base Setup
run: |
make verify-kind-cluster
make install-fission-cli
make install-skaffold
make create-crds
- name: Fission and Test images
run: |
SKAFFOLD_PROFILE=go make skaffold-run
make go-test-images
make router-port-forward
- name: go-tests
run: ./test_utils/run_test.sh ./go/tests/test_go_env.sh
- name: Collect Fission Dump
if: ${{ always() }}
run: |
command -v fission && fission support dump
- name: Archive fission dump
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: fission-dump
path: fission-dump/*.zip
retention-days: 5
jvm:
runs-on: ubuntu-latest
needs: check
if: contains( needs.check.outputs.packages, 'jvm' )
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/workflows/filters/filters.yaml
- name: Helm
uses: Azure/setup-helm@v1
with:
version: 'v3.0.0'
- name: Kind Clutser
uses: engineerd/[email protected]
with:
image: kindest/node:v1.21.1
version: v0.11.1
config: kind.yaml
- name: Configuring and testing the Installation
run: |
kubectl cluster-info --context kind-kind
kind get kubeconfig >$HOME/.kube/config
kubectl get nodes
- name: Install Fission CLI
run: |
curl -Lo fission https://github.com/fission/fission/releases/download/1.12.0/fission-cli-linux \
&& chmod +x fission && sudo mv fission /usr/local/bin/
- name: jvm
uses: hiberbee/[email protected]
with:
skaffold-version: '1.39.2'
command: run
profile: jvm
tag: latest
- name: jvm-tests
run: |
kind load docker-image jvm-env && ./test_utils/run_test.sh jvm/tests/test_java_env.sh
nodejs:
runs-on: ubuntu-latest
needs: check
if: contains( needs.check.outputs.packages, 'nodejs' )
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Unit test
run: |
pushd nodejs/
npm install
./test/local_test.sh
popd
- name: Helm
uses: Azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
with:
version: v3.13.0
- name: Kind Clutser
uses: engineerd/[email protected]
with:
image: kindest/node:v1.25.16
version: v0.23.0
config: kind.yaml
- name: Base Setup
run: |
make verify-kind-cluster
make install-fission-cli
make install-skaffold
make create-crds
- name: Fission and Test images
run: |
SKAFFOLD_PROFILE=nodejs make skaffold-run
make nodejs-test-images
make router-port-forward
- name: nodejs-tests
run: |
./test_utils/run_test.sh ./nodejs/test/test_node_env.sh
- name: Collect Fission Dump
if: ${{ always() }}
run: |
command -v fission && fission support dump
- name: Archive fission dump
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: fission-dump
path: fission-dump/*.zip
retention-days: 5
perl:
runs-on: ubuntu-latest
if: contains( needs.check.outputs.packages, 'perl' )
needs: check
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/workflows/filters/filters.yaml
- name: Helm
uses: Azure/setup-helm@v1
- name: Kind Clutser
uses: engineerd/[email protected]
with:
config: kind.yaml
- name: Configuring and testing the Installation
run: |
kubectl cluster-info --context kind-kind
kind get kubeconfig >$HOME/.kube/config
kubectl get nodes
- name: Install Fission CLI
run: |
curl -Lo fission https://github.com/fission/fission/releases/download/1.12.0/fission-cli-linux \
&& chmod +x fission && sudo mv fission /usr/local/bin/
- name: perl
if: steps.filter.outputs.perl == 'true'
uses: hiberbee/[email protected]
with:
command: run
profile: perl
php7:
runs-on: ubuntu-latest
needs: check
if: contains( needs.check.outputs.packages, 'php7' )
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/workflows/filters/filters.yaml
- name: Helm
uses: Azure/setup-helm@v1
- name: Kind Clutser
uses: engineerd/[email protected]
with:
config: kind.yaml
- name: Configuring and testing the Installation
run: |
kubectl cluster-info --context kind-kind
kind get kubeconfig >$HOME/.kube/config
kubectl get nodes
- name: Install Fission CLI
run: |
curl -Lo fission https://github.com/fission/fission/releases/download/1.12.0/fission-cli-linux \
&& chmod +x fission && sudo mv fission /usr/local/bin/
- name: php7
uses: hiberbee/[email protected]
with:
command: run
profile: php7
python:
runs-on: ubuntu-latest
needs: check
if: contains( needs.check.outputs.packages, 'python' )
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Unit test
run: |
pip3 install virtualenv
sudo apt-get update -y && sudo apt-get install -y libev-dev
pushd python/
export USERFUNCVOL=/tmp
export RUNTIME_PORT=8882
./tests/local_test.sh
export RUNTIME_PORT=8883
export WSGI_FRAMEWORK=GEVENT
./tests/local_test.sh
unset RUNTIME_PORT
popd
- name: Helm
uses: Azure/setup-helm@v1
with:
version: v3.3.4
- name: Kind Clutser
uses: engineerd/[email protected]
with:
image: kindest/node:v1.21.1
version: v0.11.1
config: kind.yaml
- name: Base Setup
run: |
make verify-kind-cluster
make install-fission-cli
make install-skaffold
make create-crds
- name: Fission and Test images
run: |
SKAFFOLD_PROFILE=python make skaffold-run
make python-test-images
make router-port-forward
- name: python-tests
run: |
./test_utils/run_test.sh ./python/tests/test_python_env.sh
- name: Collect Fission Dump
if: ${{ always() }}
run: |
command -v fission && fission support dump
- name: Archive fission dump
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: fission-dump
path: fission-dump/*.zip
retention-days: 5
ruby:
runs-on: ubuntu-latest
needs: check
if: contains(needs.check.outputs.packages, 'ruby')
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/workflows/filters/filters.yaml
- name: Helm
uses: Azure/setup-helm@v1
- name: Kind Clutser
uses: engineerd/[email protected]
with:
config: kind.yaml
- name: Configuring and testing the Installation
run: |
kubectl cluster-info --context kind-kind
kind get kubeconfig >$HOME/.kube/config
kubectl get nodes
- name: Install Fission CLI
run: |
curl -Lo fission https://github.com/fission/fission/releases/download/1.12.0/fission-cli-linux \
&& chmod +x fission && sudo mv fission /usr/local/bin/
- name: ruby
uses: hiberbee/[email protected]
with:
command: run
profile: ruby
tensorflow:
runs-on: ubuntu-latest
needs: check
if: contains(needs.check.outputs.packages, 'tensorflow-serving')
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/workflows/filters/filters.yaml
- name: Helm
uses: Azure/setup-helm@v1
- name: Kind Clutser
uses: engineerd/[email protected]
with:
config: kind.yaml
- name: Configuring and testing the Installation
run: |
kubectl cluster-info --context kind-kind
kind get kubeconfig >$HOME/.kube/config
kubectl get nodes
- name: Install Fission CLI
run: |
curl -Lo fission https://github.com/fission/fission/releases/download/1.12.0/fission-cli-linux \
&& chmod +x fission && sudo mv fission /usr/local/bin/
- name: tensorflow-serving
if: steps.filter.outputs.tensorflow-serving == 'true'
uses: hiberbee/[email protected]
with:
command: run
profile: tensorflow-serving