We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f37d9 commit 99500f2Copy full SHA for 99500f2
.github/workflows/Release_Linux.yml
@@ -23,7 +23,7 @@ jobs:
23
run: cmake -S . -B build -DC2CORE_BUILD_TESTS=OFF
24
25
- name: Build Release
26
- run: cmake --build build --parallel
+ run: cmake --build build -j$(nproc)
27
28
- name: Install to package/
29
run: cmake --install build --prefix "$GITHUB_WORKSPACE/package"
.github/workflows/Release_Windows.yml
@@ -38,7 +38,7 @@ jobs:
38
39
# Try common places the Modules output might land
40
$candidates = @(
41
- Join-Path $ws 'Release\Modules',
+ Join-Path $ws 'Release\Modules'
42
)
43
44
$found = $false
0 commit comments