File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2828 OPENGROK_PULL_REQUEST : ${{ github.head_ref }}
2929 OPENGROK_REPO_SLUG : ${{ github.repository }}
3030 OPENGROK_REF : ${{ github.ref }}
31+ OPENGROK_COVERALLS_TOKEN : ${{ secrets.COVERALLS_TOKEN }}
3132 run : ./dev/main
3233 macos :
3334 name : macOS with Java 11
Original file line number Diff line number Diff line change 1313extra_args=" "
1414if [[ " x$OPENGROK_REPO_SLUG " == " xoracle/opengrok" && " x$OPENGROK_BRANCH " == " xmaster" ]]; then
1515 echo " Enabling Coveralls"
16- extra_args=" jacoco:report coveralls:report"
16+ if [[ -n $OPENGROK_COVERALLS_TOKEN ]]; then
17+ extra_args=" $extra_args -DrepoToken=$OPENGROK_COVERALLS_TOKEN "
18+ fi
19+ extra_args=" $extra_args jacoco:report coveralls:report"
1720
1821 #
1922 # Sonar seems to only work on master branch commits.
You can’t perform that action at this time.
0 commit comments