File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
integration-testing/scripts Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 3030 distribution : ' temurin'
3131 cache : maven
3232
33+ - name : Install JBang
34+ run : |
35+ echo "π¦ Installing JBang..."
36+ curl -Ls https://sh.jbang.dev | bash -s - app setup
37+ echo "$HOME/.jbang/bin" >> $GITHUB_PATH
38+ export PATH="$HOME/.jbang/bin:$PATH"
39+ jbang version
40+
3341 - name : Update Spring AI version
3442 run : |
3543 echo "π¦ Updating Spring AI version to: ${{ inputs.spring_ai_version }}"
Original file line number Diff line number Diff line change 148148
149149echo " " | tee -a " ${LOG_FILE} "
150150echo " π Full log: ${LOG_FILE} "
151- echo " β
Testing completed!"
151+
152+ # Exit with proper code
153+ if [ ${failed} -gt 0 ]; then
154+ echo " β Testing completed with failures!"
155+ exit 1
156+ else
157+ echo " β
Testing completed!"
158+ exit 0
159+ fi
You canβt perform that action at this time.
0 commit comments