Skip to content

Commit 4c1dd2b

Browse files
committed
Temporary commit for circle CI debugging
1 parent 311c587 commit 4c1dd2b

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

bazel/emscripten_cache.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ def _emscripten_cache_impl(repository_ctx):
7575
repository_ctx.report_progress("Building secondary cache")
7676
result = repository_ctx.execute(embuilder_args, quiet=False)
7777
if result.return_code != 0:
78+
print('stderr = ' + result.stderr)
79+
print('stdout = ' + result.stdout)
7880
fail("Embuilder exited with a non-zero return code")
7981
# Override Emscripten's cache with the secondary cache
8082
default_config += "CACHE = '{}'\n".format(cache_path)

test/test_bazel.ps1

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ if (-not $?) { Exit $LastExitCode }
1010

1111
Set-Location test_external
1212

13-
bazel build //:hello-world-wasm
14-
if (-not $?) { Exit $LastExitCode }
13+
# bazel build //:hello-world-wasm
14+
# if (-not $?) { Exit $LastExitCode }
1515

16-
bazel build //long_command_line:long_command_line_wasm
17-
if (-not $?) { Exit $LastExitCode }
16+
# bazel build //long_command_line:long_command_line_wasm
17+
# if (-not $?) { Exit $LastExitCode }
1818

19-
bazel build //:hello-embind-wasm --compilation_mode dbg # debug
20-
if (-not $?) { Exit $LastExitCode }
19+
# bazel build //:hello-embind-wasm --compilation_mode dbg # debug
20+
# if (-not $?) { Exit $LastExitCode }
2121

22-
# Test use of the closure compiler
23-
bazel build //:hello-embind-wasm --compilation_mode opt # release
24-
if (-not $?) { Exit $LastExitCode }
22+
# # Test use of the closure compiler
23+
# bazel build //:hello-embind-wasm --compilation_mode opt # release
24+
# if (-not $?) { Exit $LastExitCode }
2525

2626
Set-Location ..\test_secondary_lto_cache
2727

0 commit comments

Comments
 (0)