Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8be39f5
Revert "Add ActiveIssue to the MemoryMappedFiles tests"
radekdoulik Jun 2, 2021
eb2f954
Revert "Add ActiveIssue attr to the FileSystem tests"
radekdoulik Jun 2, 2021
3eb7dbe
Bump emscripten version to 2.0.23
radekdoulik Jun 2, 2021
03abd7f
Use newer docker images with 2.0.23
radekdoulik Jun 2, 2021
9fdb05d
Update docs
radekdoulik Jun 2, 2021
bf29544
Use 2.0.23 emscripten nuget packages
radekdoulik Jun 9, 2021
739af16
Revert "Revert "Add ActiveIssue attr to the FileSystem tests""
radekdoulik Jun 9, 2021
c0e0175
Revert "Revert "Add ActiveIssue to the MemoryMappedFiles tests""
radekdoulik Jun 9, 2021
ff8848a
Increase timeout for AOT tests
radekdoulik Jun 9, 2021
02b5ee2
Add description of emscripten bump to README
radekdoulik Jun 10, 2021
0fef9d5
Merge remote-tracking branch 'remotes/origin/main' into pr-wasm-emscr…
radekdoulik Jun 10, 2021
14aa3be
Try to get information about resources
radekdoulik Jun 16, 2021
773e3e8
Get all limits
radekdoulik Jun 16, 2021
17bfbfe
Merge branch 'main' into pr-wasm-emscripten-2-0-23-bump
radekdoulik Jun 17, 2021
6c221e8
Escape & chars
radekdoulik Jun 17, 2021
fec0e55
Reduce platform matrix
radekdoulik Jun 17, 2021
67dd775
Lets try one more build with doubled timeout
radekdoulik Jun 17, 2021
38041f4
Merge remote-tracking branch 'remotes/origin/main' into pr-wasm-emscr…
radekdoulik Jun 18, 2021
e9dfd01
Revert "Lets try one more build with doubled timeout"
radekdoulik Jun 18, 2021
de4037e
Try -Wl,-O0 on CI
radekdoulik Jun 21, 2021
7c1dff2
Use -Wl,-lto-O0 do lower link time optimization
radekdoulik Jun 21, 2021
b910ec6
Set EmccLinkOptimizationFlag for AOT tests
radekdoulik Jun 23, 2021
db0cd09
Escape commas
radekdoulik Jun 23, 2021
91e4670
Revert "Reduce platform matrix"
radekdoulik Jun 23, 2021
3c57b20
Remove resource info retrieval
radekdoulik Jun 23, 2021
1f9036a
Merge remote-tracking branch 'remotes/origin/main' into pr-wasm-emscr…
radekdoulik Jun 23, 2021
60b00e0
Merge remote-tracking branch 'remotes/origin/main' into pr-wasm-emscr…
radekdoulik Jun 23, 2021
49822e6
Bump emsdk versions
lewing Jun 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Escape & chars
  • Loading branch information
radekdoulik committed Jun 17, 2021
commit 6c221e87b1616940b5671a485c6c82082f626c90
4 changes: 2 additions & 2 deletions src/libraries/sendtohelixhelp.proj
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@
We "exit /b" at the end of RunTests.cmd. Helix runs some other commands after ours within the batch script,
so if we don't use "call", then we cause the parent script to exit, and anything after will not be executed.
-->
<HelixCommand Condition="'$(TargetsWindows)' == 'true' or '$(BrowserHost)' == 'windows'">$(HelixCommand)powershell -c 'Get-PSDrive' && call RunTests.cmd</HelixCommand>
<HelixCommand Condition="'$(TargetsWindows)' == 'true' or '$(BrowserHost)' == 'windows'">$(HelixCommand)powershell -c 'Get-PSDrive' &amp;&amp; call RunTests.cmd</HelixCommand>
<HelixCommand Condition="('$(TargetsWindows)' == 'true' or '$(BrowserHost)' == 'windows') and '$(IncludeHelixCorrelationPayload)' == 'true'">$(HelixCommand) --runtime-path %HELIX_CORRELATION_PAYLOAD%</HelixCommand>

<HelixCommand Condition="'$(TargetsWindows)' != 'true' and '$(BrowserHost)' != 'windows'">$(HelixCommand)df -h && ulimit -a && free -h && ./RunTests.sh</HelixCommand>
<HelixCommand Condition="'$(TargetsWindows)' != 'true' and '$(BrowserHost)' != 'windows'">$(HelixCommand)df -h &amp;&amp; ulimit -a &amp;&amp; free -h &amp;&amp; ./RunTests.sh</HelixCommand>
<HelixCommand Condition="'$(TargetsWindows)' != 'true' and '$(BrowserHost)' != 'windows' and '$(IncludeHelixCorrelationPayload)' == 'true'">$(HelixCommand) --runtime-path "$HELIX_CORRELATION_PAYLOAD"</HelixCommand>
</PropertyGroup>

Expand Down