-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (87 loc) · 2.61 KB
/
verify-clients.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
name: verify clients
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
verify-js-client:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout JS Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-js-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'js-client'
- name: Update Model According To Specification
working-directory: js-client
run: |
npm install
./update-models.sh
verify-java-client:
runs-on: ubuntu-latest
steps:
- name: Specify Java Version
uses: actions/setup-java@v1
with:
java-version: 11
java-package: jdk
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout Java Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-java-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'java-client'
- name: Update Model According To Specification
working-directory: java-client
run: |
./update-models.sh
verify-python-client:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout Python Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-python-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'python-client'
- name: Update Model According To Specification
working-directory: python-client
run: |
./update-models.sh
verify-csharp-client:
runs-on: ubuntu-latest
steps:
- name: Specify Dotnet Version
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout CSharp Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-csharp-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'csharp-client'
- name: Update Model According To Specification
working-directory: csharp-client
run: |
./update-models.sh