Skip to content

Commit

Permalink
chore: disable ai mvn building (#334)
Browse files Browse the repository at this point in the history
Update validate-release.yml
  • Loading branch information
imbajin committed Mar 25, 2024
1 parent cebb070 commit 3bf6270
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/validate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ on:
inputs:
release_version:
required: true
default: '1.2.0'
description: svn release version
default: '1.3.0'
gpg_user:
required: true
description: current release manager(gpg username)
default: 'imbajin'

push:
Expand Down Expand Up @@ -163,8 +165,8 @@ jobs:
done
# 4.8 test compile the packages
if [[ ${{ matrix.java_version }} == 8 && "$i" =~ "computer" ]]; then
echo "skip computer module in java8"
if [[ (${{ matrix.java_version }} == 8 && "$i" =~ "computer") ]] || [[ "$i" =~ 'hugegraph-ai' ]]; then
echo "Skip compile computer module in java8 & AI module in all versions"
popd || exit
continue
fi
Expand All @@ -186,7 +188,7 @@ jobs:
bin/start-hugegraph.sh || exit
popd || exit
- name: 6. Run Compiled Packages In ToolChain (Loader & Tool & Hubble)
- name: 6. Run Compiled Packages In Toolchain (Loader & Tool & Hubble)
run: |
cd dist/${{ inputs.release_version }} || exit
Expand Down Expand Up @@ -336,6 +338,6 @@ jobs:
strategy:
fail-fast: false
matrix:
java_version: [ '8','11' ]
java_version: ['8','11']
# TODO: support windows-latest or other OS in future
os: [ubuntu-latest, macos-latest]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The functions of this system include but are not limited to:
- The attributes of edges and vertices can be indexed to support precise query, range query, and full-text search
- The storage system adopts plug-in mode, supporting RocksDB, Cassandra, ScyllaDB, HBase, MySQL, PostgreSQL, Palo, and InMemory, etc.
- Integrate with big data systems such as Hadoop and Spark GraphX, and support Bulk Load operations
- Support high availability HA, multiple copies of data, backup recovery, monitoring, etc.
- Support high availability(HA), multiple copies of data, backup recovery, monitoring, etc.

### Modules

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ weight: 5
>
> `ASF-INFRA` 建议**避免**使用不易读的 `ID` 直接作为邮件**人名代指** (例如**避免** `simon321``wh0isSim0n` 😄)
>
> 另发送邮件最好选择 **"纯文本"** 模式, 否则排版在 ASF Mail UI 中可能会乱
> 另发送邮件最好选择 **"纯文本"** 模式否则排版在 ASF Mail UI 中可能会乱
```markdown
To: [email protected]
Expand Down Expand Up @@ -253,7 +253,7 @@ xxx
2. 打开 PDF 并填写相关内容,均需要全英文填写,建议使用 PDF 工具编辑并署名
1. **Full name**: 名字在前,姓氏在后
2. **Public name**: 可以不填,默认和 `Full name` 相同
3. 勾选 check this box only if you entered names with your family name first
3. 勾选 check this box only if you enter names with your family name first
4. **Postal Address**: 英文地址,从小地方到大地方的顺序来写,需详细到门牌号
5. **Country:** 所在国家英文
6. **E-mail**: 邮箱地址,建议与上述邮件中使用的邮箱相同
Expand Down
6 changes: 3 additions & 3 deletions dist/validate-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# 4. Run server & toolchain in binary package

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

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

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

0 comments on commit 3bf6270

Please sign in to comment.