-
Notifications
You must be signed in to change notification settings - Fork 7
95 lines (81 loc) · 3.52 KB
/
update-zkevm-api-package.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
---
name: Update zkEVM API Package
on:
workflow_dispatch:
jobs:
update-api:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Pull files from Git LFS
run: git lfs pull
- name: Get current date and time
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
- name: Download remote openapi.json
run: curl -o openapi.json https://imx-openapiv3-mr-sandbox.s3.us-east-2.amazonaws.com/openapi.json
- name: Ensure local openapi.yaml exists (if not, assume it's blank)
run: |
if [ ! -f ./src/Packages/ZkEvmApi/api~/openapi.yaml ]; then
echo "Creating empty openapi.yaml file..."
mkdir -p ./src/Packages/ZkEvmApi/api~
touch ./src/Packages/ZkEvmApi/api~/openapi.yaml
fi
- name: Compare openapi.json with openapi.yaml
id: comparison
run: |
if diff openapi.json ./src/Packages/ZkEvmApi/api~/openapi.yaml > /dev/null; then
echo "::set-output name=difference::false"
else
echo "::set-output name=difference::true"
fi
- name: Generate API if there are differences
if: steps.comparison.outputs.difference == 'true'
run: |
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar -O openapi-generator-cli.jar
java -jar openapi-generator-cli.jar generate -i openapi.json -g csharp \
--library unityWebRequest -o ./ZkEvmApi \
--skip-validate-spec \
--additional-properties=apiName=ImmutableZkEvmApi,packageName=Immutable.Api.ZkEvm
- name: Copy generated files
if: steps.comparison.outputs.difference == 'true'
run: |
mkdir -p ./src/Packages/ZkEvmApi/api~
mkdir -p ./src/Packages/ZkEvmApi/Documentation~
mkdir -p ./src/Packages/ZkEvmApi/Runtime
rm -rf ./src/Packages/ZkEvmApi/api~/*
rm -rf ./src/Packages/ZkEvmApi/Documentation~/*
rm -rf ./src/Packages/ZkEvmApi/Runtime/*
cp -r ./ZkEvmApi/api/* ./src/Packages/ZkEvmApi/api~/
cp -r ./ZkEvmApi/docs/* ./src/Packages/ZkEvmApi/Documentation~/
cp -r ./ZkEvmApi/src/Immutable.Api.ZkEvm/* ./src/Packages/ZkEvmApi/Runtime/
- name: Clean up
if: steps.comparison.outputs.difference == 'true'
run: |
rm -rf ./ZkEvmApi
rm openapi-generator-cli.jar
rm openapi.json
- name: Open sample app in Unity to generate .meta files
if: steps.comparison.outputs.difference == 'true'
uses: game-ci/unity-test-runner@v4
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
unityVersion: 2021.3.26f1
projectPath: './sample'
githubToken: ${{ secrets.GITHUB_TOKEN }}
testMode: 'EditMode'
- name: Create or update PR
if: steps.comparison.outputs.difference == 'true'
uses: gr2m/create-or-update-pull-request-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: "feat: update immutable zkEVM API package"
body: "Update Immutable zkEVM API package"
branch: "chore/update-zkevm-api-${{ steps.date.outputs.date }}"
commit-message: "feat: update immutable zkEVM API package"
path: ./src/Packages/ZkEvmApi/