forked from koupleless/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
155 lines (146 loc) · 6.66 KB
/
koupleless_runtime_release_2.1.x.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Koupleless Runtime Release for 2.1.x
## https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release
## trigger manually
on:
workflow_dispatch:
jobs:
# build_and_test:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v3
# with:
# ref: 'runtime-2.1.x'
#
# - name: Set up Docker
# uses: docker/metadata-action@v3
# with:
# images: |
# node:14
#
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'temurin'
# cache: maven
#
# - name: Build with Maven
# run: mvn clean install -DskipTests -B -U -e
#
# - name: Checkout sampletest Repository
# uses: actions/checkout@v3
# with:
# repository: 'koupleless/samples'
# path: 'samples'
#
# - name: Checkout adapter Repository
# uses: actions/checkout@v3
# with:
# repository: 'koupleless/adapter'
# path: 'adapter'
#
# - name: Build adapter and install
# run: cd adapter && ./script/ci_build.sh 17 install
#
# - name: Test Env prepare
# run: |
# sudo apt-get update >>/tmp/envprepare.out
# sudo apt-get install -y expect >>/tmp/envprepare.out
# docker pull mongo:7.0.2-jammy
# docker run --name mongodb -d -p 27017:27017 -v /home/runner/work/data:/data/db mongo:7.0.2-jammy
# docker pull zookeeper:3.9.0
# docker run -p 2181:2181 -it --name zookeeper --restart always -d zookeeper:3.9.0
# docker pull apache/rocketmq:4.9.7
# docker run -d -p 9876:9876 -p 10909:10909 -p 10910:10910 -p 10911:10911 -p 10912:10912 -v $(pwd)/samples/springboot-samples/msg/rocketmq/config/start.sh:/home/rocketmq/rocketmq-4.9.7/bin/start.sh -v $(pwd)/samples/springboot-samples/msg/rocketmq/config/broker.conf:/home/rocketmq/rocketmq-4.9.7/bin/broker.conf apache/rocketmq:4.9.7 sh /home/rocketmq/rocketmq-4.9.7/bin/start.sh
# sudo apt-get install redis-server -y
# sudo systemctl start redis-server
# docker-compose -f samples/springboot3-samples/config/apollo/config/docker-compose.yml up -d
# sudo cp .github/workflows/ccbin/arkctl /usr/bin/arkctl
# sudo chmod +x /usr/bin/arkctl
#
# - name: get koupleless-runtime version & update koupleless-runtime version for all test sample app
# run: |
# koupleless_runtime_version=$(find koupleless-common -name "*.jar" |grep -v source |sed "s/.*koupleless-common-\(.*\).jar/\1/")
# echo "升级 koupleless-runtime version to $koupleless_runtime_version"
# for testsample in `find samples \( -name "*dubbo32-samples" \)`;do sed -i "s/<koupleless.runtime.version>.*<\/koupleless.runtime.version>/<koupleless.runtime.version>$koupleless_runtime_version<\/koupleless.runtime.version>/g" $testsample/pom.xml ;done
# for testsample in `find samples \( -name "*dubbo32-samples" \)`;do if cat $testsample/pom.xml |grep "<koupleless.runtime.version>"|grep $koupleless_runtime_version;then echo "版本校验通过";else echo "版本校验失败";exit 1;fi;done
#
# - name: Run jdk17 serverless runtime test
# run: |
# set -e
# if ! bash .github/workflows/ccbin/start.sh jdk17;then
# echo "测试失败"
# exit 1
# fi
release_for_jdk17:
# needs: build_and_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: 'runtime-2.1.x'
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
ref: 'runtime-2.1.x'
java-version: '17'
distribution: 'temurin'
cache: maven
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: install with Maven
run: mvn clean install
- name: Build with Maven
run: mvn --batch-mode deploy -DskipTests -Prelease
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
- name: checkout adapter repo
uses: actions/checkout@v3
with:
repository: 'koupleless/adapter'
path: 'adapter'
- name: Finding Maven Modules
id: find-maven-modules
run: |
echo "Finding Maven Modules"
# 定位 pom.xml 文件,通过 grep 排除掉根目录下的 pom.xml
modules=$(find . -name pom.xml -maxdepth 2 -not -path "./pom.xml" -exec dirname {} \;)
echo "$modules"
# 使用 jq 将 shell 数组转换成 JSON 数组供后续步骤使用
modules_in_json=$(echo $modules | jq -R -s -c 'split("\n") | map(select(length > 0))')
echo "$modules_in_json"
echo "modules-list=$modules_in_json" >> $GITHUB_OUTPUT
working-directory: adapter/
- name: release adapter for jdk17
run: |
# 创建一个映射来存储模块名到 JDK 版本的映射
modules=(${{ join(fromJSON(steps.find-maven-modules.outputs.modules-list), ' ') }})
modules_in_right_jdk=""
for module in "${modules[@]}"; do
# 读取模块中的 pom.xml 来确定 JDK 版本
jdk_version=$(grep -m 1 '<java.version>' $module/pom.xml | sed 's/<[^>]*>//g' | xargs)
echo "${module} JDK version: ${jdk_version}"
# 如果是目标 jdk 版本,则执行 release 操作
if [[ "${jdk_version}" == "17" ]]; then
modules_in_right_jdk="${modules_in_right_jdk}${module},"
fi
done
if [[ -n ${modules_in_right_jdk} ]]; then
modules_in_right_jdk="${modules_in_right_jdk:0:-1}"
echo "release for module ${modules_in_right_jdk}"
mvn --batch-mode deploy -Prelease -pl ${modules_in_right_jdk} -am -amd -B -U
echo "release completed for module ${modules_in_right_jdk}"
fi
working-directory: adapter/
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}