Skip to content

Commit deffc2c

Browse files
reducing parallelism
1 parent 887013e commit deffc2c

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.github/workflows/cmake-test-release-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,5 +160,5 @@ jobs:
160160
shell: sh
161161
# Execute tests defined by the CMake configuration.
162162
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
163-
run: ctest -j18 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
163+
run: ctest -j1 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
164164

.github/workflows/cmake-test-release-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,5 @@ jobs:
142142
working-directory: ${{github.workspace}}/__build/tsc/msbuild/x64/release
143143
# Execute tests defined by the CMake configuration.
144144
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
145-
run: ctest -j18 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
145+
run: ctest -j1 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
146146
shell: pwsh

tsc/test/.vscode/launch.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "(Windows) test-runner.exe - Launch (Shared)",
8+
"name": "(Windows) test-runner.exe - Launch (JIT - Shared)",
99
"type": "cppvsdbg",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/../../__build/tsc/windows-msbuild-debug/test/tester/Debug/test-runner.exe",
@@ -16,6 +16,18 @@
1616
"externalConsole": true,
1717
"visualizerFile": "${workspaceFolder}/../tsc.natvis"
1818
},
19+
{
20+
"name": "(Windows) test-runner.exe - Launch (Compile - Shared)",
21+
"type": "cppvsdbg",
22+
"request": "launch",
23+
"program": "${workspaceFolder}/../../__build/tsc/windows-msbuild-debug/test/tester/Debug/test-runner.exe",
24+
"args": ["-shared", "${workspaceFolder}/../../tsc/test/tester/tests/emit_class.ts", "${workspaceFolder}/../../tsc/test/tester/tests/decl_class.ts"],
25+
"stopAtEntry": false,
26+
"cwd": "${workspaceFolder}/../../__build/tsc/windows-msbuild-debug/test/tester/Debug/",
27+
"environment": [],
28+
"externalConsole": true,
29+
"visualizerFile": "${workspaceFolder}/../tsc.natvis"
30+
},
1931
{
2032
"name": "(Windows) test-runner.exe - Launch (Compile-Time)",
2133
"type": "cppvsdbg",

0 commit comments

Comments
 (0)