Skip to content

Commit cccc587

Browse files
committed
add retries to the build
1 parent 9ca5b3f commit cccc587

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

otel_sdk_build.cmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,20 @@ goto:eof
3030

3131
:test
3232
REM singleton_test does not work when linked as static under Windows
33+
"%__BAZEL__%" test --profile=0.nodllk.tracing.json --//:with_dll=false -- ... -//api/test/singleton:singleton_test -k
3334
"%__BAZEL__%" test --profile=0.nodll.tracing.json --//:with_dll=false -- ... -//api/test/singleton:singleton_test || goto:error
35+
"%__BAZEL__%" build --profile=1.allk.tracing.json --//:with_dll=true -- ... -otel_sdk_zip -k
3436
"%__BAZEL__%" build --profile=1.all.tracing.json --//:with_dll=true -- ... -otel_sdk_zip || goto:error
37+
"%__BAZEL__%" test --profile=2.dbgk.tracing.json --//:with_dll=true -c dbg -- ... -otel_sdk_zip -k
3538
"%__BAZEL__%" test --profile=2.dbg.tracing.json --//:with_dll=true -c dbg -- ... -otel_sdk_zip || goto:error
39+
"%__BAZEL__%" test --profile=3.fastbuildk.tracing.json --//:with_dll=true -c fastbuild -- ... -otel_sdk_zip -k
3640
"%__BAZEL__%" test --profile=3.fastbuild.tracing.json --//:with_dll=true -c fastbuild -- ... -otel_sdk_zip || goto:error
41+
"%__BAZEL__%" test --profile=4.optk.tracing.json --//:with_dll=true -c opt -- ... -otel_sdk_zip -k
3742
"%__BAZEL__%" test --profile=4.opt.tracing.json --//:with_dll=true -c opt -- ... -otel_sdk_zip || goto:error
3843
goto:eof
3944

4045
:zip
46+
"%__BAZEL__%" run --profile=5.pkgk.tracing.json --//:with_dll=true make_otel_sdk -k
4147
"%__BAZEL__%" run --profile=5.pkg.tracing.json --//:with_dll=true make_otel_sdk || goto:error
4248
goto:eof
4349

0 commit comments

Comments
 (0)