This is an automated email from the ASF dual-hosted git repository.
xuba pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new 576ab9067 [AMORO-3850][FOLLOWUP] Add GA for OpenAPI SDK (#3870)
576ab9067 is described below
commit 576ab90678048c92db030121e0755bb24ec02a46
Author: Fei Wang <[email protected]>
AuthorDate: Sun Nov 2 06:04:44 2025 -0800
[AMORO-3850][FOLLOWUP] Add GA for OpenAPI SDK (#3870)
[AMORO-3850][FOLLOWUP] Add GA for openAPI SDK
---
.github/workflows/openapi-sdk-ci.yml | 56 ++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/.github/workflows/openapi-sdk-ci.yml
b/.github/workflows/openapi-sdk-ci.yml
new file mode 100644
index 000000000..484f4bacb
--- /dev/null
+++ b/.github/workflows/openapi-sdk-ci.yml
@@ -0,0 +1,56 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+name: OpenAPI SDK CI
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
+on:
+ push:
+ branches:
+ - "master"
+ - "0.**"
+
+ pull_request:
+ branches:
+ - "master"
+ - "0.**"
+ paths:
+ - ".github/workflows/**"
+ - "amoro-ams/src/main/resources/openapi/**"
+ - "amoro-ams/pom.xml"
+ - "pom.xml"
+ - "tools/maven/**"
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 17
+ uses: actions/setup-java@v3
+ with:
+ java-version: '17'
+ distribution: 'temurin'
+ cache: maven
+
+ - name: Build OpenAPI SDK
+ run: mvn clean package -DskipTests -Pgenerate-sdk -pl amoro-ams -am