comparison third_party/emsdk/test/test_bazel.ps1 @ 186:8cf4ec5e2191 hg-web

Fixed merge conflict.
author MrJuneJune <me@mrjunejune.com>
date Fri, 23 Jan 2026 22:38:59 -0800
parents 8d17f6e6e290
children
comparison
equal deleted inserted replaced
176:fed99fc04e12 186:8cf4ec5e2191
1 $ErrorActionPreference = 'Stop'
2
3 Set-Location bazel
4
5 bazel build //hello-world:hello-world-wasm
6 if (-not $?) { Exit $LastExitCode }
7
8 bazel build //hello-world:hello-world-wasm-simd
9 if (-not $?) { Exit $LastExitCode }
10
11 Set-Location test_external
12
13 bazel build //:hello-world-wasm
14 if (-not $?) { Exit $LastExitCode }
15
16 bazel build //long_command_line:long_command_line_wasm
17 if (-not $?) { Exit $LastExitCode }
18
19 bazel build //:hello-embind-wasm --compilation_mode dbg # debug
20 if (-not $?) { Exit $LastExitCode }
21
22 # Test use of the closure compiler
23 bazel build //:hello-embind-wasm --compilation_mode opt # release
24 if (-not $?) { Exit $LastExitCode }
25
26 Set-Location ..\test_secondary_lto_cache
27
28 bazel build //:hello-world-wasm
29 if (-not $?) { Exit $LastExitCode }
30