File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -221,9 +221,10 @@ def bazelTest = {
221221 stage(' bazelisk test ...' ) {
222222 withCredentials([string(credentialsId : ' bazel-auth-token-b64' , variable : ' BAZEL_AUTH_TOKEN_B64' )]) {
223223 timeout(time : 120 , unit : ' MINUTES' ) {
224- def cmd = ' bazelisk test --config=ci --show_timestamps --test_output=errors --curses=no --force_pic --remote_header="Authorization=Basic $BAZEL_AUTH_TOKEN_B64"'
224+ def cmd = ' bazelisk test --config=ci --show_timestamps --test_output=errors --curses=no --force_pic --remote_header="Authorization=Basic $BAZEL_AUTH_TOKEN_B64" --profile=build.profile '
225225 try {
226226 sh label : ' Bazel Build' , script : cmd + ' ...' ;
227+ sh label : ' Bazel Build' , script : ' bazelisk analyze-profile build.profile' ;
227228 } catch (e) {
228229 currentBuild. result = ' FAILURE' ;
229230 sh label : ' Bazel Build (keep_going)' , script : cmd + ' --keep_going ...' ;
You can’t perform that action at this time.
0 commit comments