Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
adamfarley committed Nov 22, 2023
1 parent 4ce09c2 commit 2299cac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tooling/build_autotriage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,13 @@ identifyFailedBuildsInTimerPipelines() {
do
# First we find the latest timer-initiated pipeline for this JDK version.
echo "wgetting https://trss.adoptium.net/api/getBuildHistory?buildName=openjdk${arrayOfAllJDKVersions[v]}-pipeline&startBy=timer"
latestTimerPipelineRaw=$(wget -q -O - https://trss.adoptium.net/api/getBuildHistory?buildName=openjdk${arrayOfAllJDKVersions[v]}-pipeline&startBy=timer)
latestTimerPipelineRaw=$(wget -q -O - "https://trss.adoptium.net/api/getBuildHistory?buildName=openjdk${arrayOfAllJDKVersions[v]}-pipeline&startBy=timer")
latestTimerPipeline=""
oldIFS=$IFS
IFS=","
for jsonEntry in $latestTimerPipelineRaw
do
echo "flipflap $jsonEntry"
latestTimerPipeline=${jsonEntry:9:-1}
break
done
Expand Down

0 comments on commit 2299cac

Please sign in to comment.