File tree 3 files changed +13
-12
lines changed
3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,15 @@ set -e
15
15
function get_latest_released_version() {
16
16
local group_id=$1
17
17
local artifact_id=$2
18
- latest=$( curl -s " https://search.maven.org/solrsearch/select?q=g:${group_id} +AND+a:${artifact_id} &core=gav&rows=500&wt=json" | jq -r ' .response.docs[] | select(.v | test("^[0-9]+(\\.[0-9]+)*$")) | .v' | sort -V | tail -n 1)
19
- echo " ${latest} "
18
+ json_content=$( curl -s " https://search.maven.org/solrsearch/select?q=g:${group_id} +AND+a:${artifact_id} &core=gav&rows=500&wt=json" )
19
+ latest=$( jq -r ' .response.docs[] | select(.v | test("^[0-9]+(\\.[0-9]+)*$")) | .v' <<< " ${json_content}" | sort -V | tail -n 1)
20
+ if [[ -z " ${latest} " ]]; then
21
+ echo " The latest version of ${group_id} :${artifact_id} is empty."
22
+ echo " The returned json from maven.org is invalid: ${json_content} "
23
+ exit 1
24
+ else
25
+ echo " ${latest} "
26
+ fi
20
27
}
21
28
22
29
# Update a key to a new value in the generation config.
Original file line number Diff line number Diff line change @@ -59,23 +59,15 @@ jobs:
59
59
env :
60
60
JOB_TYPE : test
61
61
windows :
62
- # Building using Java 11 and run the tests with Java 8 runtime
63
62
runs-on : windows-latest
64
63
steps :
65
64
- name : Support longpaths
66
65
run : git config --system core.longpaths true
67
66
- uses : actions/checkout@v4
68
- - uses : actions/setup-java@v4
69
- with :
70
- java-version : 8
71
- distribution : temurin
72
- - name : " Set jvm system property environment variable for surefire plugin (unit tests)"
73
- run : echo "SUREFIRE_JVM_OPT=-Djvm=${JAVA_HOME}\bin\java" >> $GITHUB_ENV
74
- shell : bash
75
67
- uses : actions/setup-java@v4
76
68
with :
77
69
distribution : temurin
78
- java-version : 11
70
+ java-version : 8
79
71
- run : java -version
80
72
- run : .kokoro/build.bat
81
73
env :
Original file line number Diff line number Diff line change 28
28
steps :
29
29
- uses : actions/checkout@v4
30
30
with :
31
+ fetch-depth : 0
31
32
token : ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
32
33
- name : Update params in generation config to latest
33
34
shell : bash
36
37
[ -z "$(git config user.email)" ] && git config --global user.email "[email protected] "
37
38
[ -z "$(git config user.name)" ] && git config --global user.name "cloud-java-bot"
38
39
bash .github/scripts/update_generation_config.sh \
39
- --base_branch "${base_branch}"\
40
+ --base_branch "${base_branch}" \
40
41
--repo ${{ github.repository }}
41
42
env :
42
43
GH_TOKEN : ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
44
+
You can’t perform that action at this time.
0 commit comments