Skip to content

Commit 3bf6270

Browse files
authored
chore: disable ai mvn building (#334)
Update validate-release.yml
1 parent cebb070 commit 3bf6270

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/workflows/validate-release.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ on:
55
inputs:
66
release_version:
77
required: true
8-
default: '1.2.0'
8+
description: svn release version
9+
default: '1.3.0'
910
gpg_user:
1011
required: true
12+
description: current release manager(gpg username)
1113
default: 'imbajin'
1214

1315
push:
@@ -163,8 +165,8 @@ jobs:
163165
done
164166
165167
# 4.8 test compile the packages
166-
if [[ ${{ matrix.java_version }} == 8 && "$i" =~ "computer" ]]; then
167-
echo "skip computer module in java8"
168+
if [[ (${{ matrix.java_version }} == 8 && "$i" =~ "computer") ]] || [[ "$i" =~ 'hugegraph-ai' ]]; then
169+
echo "Skip compile computer module in java8 & AI module in all versions"
168170
popd || exit
169171
continue
170172
fi
@@ -186,7 +188,7 @@ jobs:
186188
bin/start-hugegraph.sh || exit
187189
popd || exit
188190
189-
- name: 6. Run Compiled Packages In ToolChain (Loader & Tool & Hubble)
191+
- name: 6. Run Compiled Packages In Toolchain (Loader & Tool & Hubble)
190192
run: |
191193
cd dist/${{ inputs.release_version }} || exit
192194
@@ -336,6 +338,6 @@ jobs:
336338
strategy:
337339
fail-fast: false
338340
matrix:
339-
java_version: [ '8','11' ]
341+
java_version: ['8','11']
340342
# TODO: support windows-latest or other OS in future
341343
os: [ubuntu-latest, macos-latest]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The functions of this system include but are not limited to:
3636
- The attributes of edges and vertices can be indexed to support precise query, range query, and full-text search
3737
- The storage system adopts plug-in mode, supporting RocksDB, Cassandra, ScyllaDB, HBase, MySQL, PostgreSQL, Palo, and InMemory, etc.
3838
- Integrate with big data systems such as Hadoop and Spark GraphX, and support Bulk Load operations
39-
- Support high availability HA, multiple copies of data, backup recovery, monitoring, etc.
39+
- Support high availability(HA), multiple copies of data, backup recovery, monitoring, etc.
4040

4141
### Modules
4242

content/cn/docs/contribution-guidelines/committer-guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ weight: 5
3333
>
3434
> `ASF-INFRA` 建议**避免**使用不易读的 `ID` 直接作为邮件**人名代指** (例如**避免** `simon321``wh0isSim0n` 😄)
3535
>
36-
> 另发送邮件最好选择 **"纯文本"** 模式, 否则排版在 ASF Mail UI 中可能会乱
36+
> 另发送邮件最好选择 **"纯文本"** 模式否则排版在 ASF Mail UI 中可能会乱
3737
3838
```markdown
3939
To: private@hugegraph.apache.org
@@ -253,7 +253,7 @@ xxx
253253
2. 打开 PDF 并填写相关内容,均需要全英文填写,建议使用 PDF 工具编辑并署名
254254
1. **Full name**: 名字在前,姓氏在后
255255
2. **Public name**: 可以不填,默认和 `Full name` 相同
256-
3. 勾选 check this box only if you entered names with your family name first
256+
3. 勾选 check this box only if you enter names with your family name first
257257
4. **Postal Address**: 英文地址,从小地方到大地方的顺序来写,需详细到门牌号
258258
5. **Country:** 所在国家英文
259259
6. **E-mail**: 邮箱地址,建议与上述邮件中使用的邮箱相同

dist/validate-release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# 4. Run server & toolchain in binary package
2323

2424
# if we don't want to exit after '|', remove "-o pipefail"
25-
set -euxo pipefail
25+
set -exo pipefail
2626

2727
# release version (input by committer)
2828
RELEASE_VERSION=$1 # like 1.2.0
@@ -153,8 +153,8 @@ for i in *src.tar.gz; do
153153
done
154154

155155
# 4.8: test compile the packages
156-
if [[ $JAVA_VERSION == 8 && "$i" =~ "computer" ]]; then
157-
echo "skip computer module in java8"
156+
if [[ ($JAVA_VERSION == 8 && "$i" =~ "computer") ]] || [[ "$i" =~ 'hugegraph-ai' ]]; then
157+
echo "Skip compile computer module in java8 & AI module in all versions"
158158
popd
159159
continue
160160
fi

0 commit comments

Comments
 (0)