-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (64 loc) · 1.83 KB
/
generate-and-test-sdk.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
name: Generate & Test SDK
on:
pull_request:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
generate-sdk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
overwrite-settings: false
- id: build-with-maven
working-directory: ./generator
run: mvn clean install -P github-generate-action-profile
- name: Generate SDK Files
working-directory: ./generator
run: |
mvn clean install
mvn exec:java "-Dnamespace=exemplar" "-DsdkVersion=0.0.1-exemplar" "-Dspec=src/test/resources/exemplar.yaml"
- uses: actions/upload-artifact@v3
with:
name: core
path: core
- uses: actions/upload-artifact@v3
with:
name: dependencies
path: generator/src/main/resources/dependencies/package.json
- uses: actions/upload-artifact@v3
with:
name: sdk
path: generator/target/sdk
verify-generated-sdk:
runs-on: ubuntu-latest
needs: generate-sdk
steps:
- uses: actions/download-artifact@v3
with:
name: sdk
path: generator/target/sdk
- uses: actions/download-artifact@v3
with:
name: dependencies
path: generator/src/main/resources/dependencies/package.json
- uses: actions/download-artifact@v3
with:
name: core
path: core
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18.14.1
- name: verify generated sdk
working-directory: ./generator/target/sdk
run: |
npm run prepare-sdk
npx tsc