-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (73 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
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@v4
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@v4
with:
name: sdk
path: generator/target/sdk
include-hidden-files: true
verify-generated-sdk:
runs-on: ubuntu-latest
needs: generate-sdk
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
- uses: actions/download-artifact@v4
with:
name: sdk
path: generator/target/sdk
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: verify generated sdk
working-directory: ./generator/target/sdk
run: |
npm run prepare-sdk
npx tsc
- name: generate docs
working-directory: ./generator/target/sdk
run: |
npm run generate-docs
- name: update generated docs
run: |
rm -rf ./generator/src/test/resources/exemplar-docs/*
cp -r ./generator/target/sdk/docs/* ./generator/src/test/resources/exemplar-docs/
if git diff --quiet; then
echo "No docs changes."
else
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add ./generator/src/test/resources/exemplar-docs/
git commit -m "chore(docs): update docs"
git push
echo "Docs changes committed and pushed successfully."
fi
- uses: actions/labeler@v5
with:
sync-labels: true