Skip to content

Commit

Permalink
reducing parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
ASDAlexander77 committed Oct 14, 2024
1 parent 887013e commit deffc2c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-test-release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,5 @@ jobs:
shell: sh
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -j18 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
run: ctest -j1 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure

2 changes: 1 addition & 1 deletion .github/workflows/cmake-test-release-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,5 @@ jobs:
working-directory: ${{github.workspace}}/__build/tsc/msbuild/x64/release
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -j18 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
run: ctest -j1 -C ${{ env.BUILD_TYPE }} -T test --output-on-failure -T test --output-on-failure
shell: pwsh
14 changes: 13 additions & 1 deletion tsc/test/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) test-runner.exe - Launch (Shared)",
"name": "(Windows) test-runner.exe - Launch (JIT - Shared)",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/../../__build/tsc/windows-msbuild-debug/test/tester/Debug/test-runner.exe",
Expand All @@ -16,6 +16,18 @@
"externalConsole": true,
"visualizerFile": "${workspaceFolder}/../tsc.natvis"
},
{
"name": "(Windows) test-runner.exe - Launch (Compile - Shared)",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/../../__build/tsc/windows-msbuild-debug/test/tester/Debug/test-runner.exe",
"args": ["-shared", "${workspaceFolder}/../../tsc/test/tester/tests/emit_class.ts", "${workspaceFolder}/../../tsc/test/tester/tests/decl_class.ts"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/../../__build/tsc/windows-msbuild-debug/test/tester/Debug/",
"environment": [],
"externalConsole": true,
"visualizerFile": "${workspaceFolder}/../tsc.natvis"
},
{
"name": "(Windows) test-runner.exe - Launch (Compile-Time)",
"type": "cppvsdbg",
Expand Down

0 comments on commit deffc2c

Please sign in to comment.