Fix yaml syntax.
This commit is contained in:
parent
884c0d5bdd
commit
1846821a5f
5
.github/workflows/nuget.yml
vendored
5
.github/workflows/nuget.yml
vendored
@ -25,9 +25,8 @@ jobs:
|
||||
- name: Build
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
run: |
|
||||
$threads = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
||||
cmake --build . --config Debug --parallel $threads
|
||||
cmake --build . --config Release --parallel $threads
|
||||
cmake --build . --config Debug
|
||||
cmake --build . --config Release
|
||||
|
||||
- name: Test
|
||||
working-directory: build
|
||||
|
||||
5
.github/workflows/tag.yml
vendored
5
.github/workflows/tag.yml
vendored
@ -25,9 +25,8 @@ jobs:
|
||||
- name: Build
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
run: |
|
||||
$threads = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
||||
cmake --build . --config Debug --parallel $threads
|
||||
cmake --build . --config Release --parallel $threads
|
||||
cmake --build . --config Debug
|
||||
cmake --build . --config Release
|
||||
|
||||
- name: Test
|
||||
working-directory: build
|
||||
|
||||
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
@ -33,9 +33,7 @@ jobs:
|
||||
|
||||
- name: Build
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
run: |
|
||||
$threads = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
||||
cmake --build . --config ${{matrix.build_type}} --parallel $threads
|
||||
run: cmake --build . --config ${{matrix.build_type}}
|
||||
|
||||
- name: Test
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
|
||||
Loading…
Reference in New Issue
Block a user