Koupleless Runtime Snapshot for 2.1.x #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 Snapshot 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 "*3-samples" -o -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 "*3-samples" -o -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 -Psnapshot | |
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 -Psnapshot -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 }} |