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
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
run: |
|
run: |
|
||||||
$threads = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
cmake --build . --config Debug
|
||||||
cmake --build . --config Debug --parallel $threads
|
cmake --build . --config Release
|
||||||
cmake --build . --config Release --parallel $threads
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
working-directory: build
|
working-directory: build
|
||||||
|
|||||||
5
.github/workflows/tag.yml
vendored
5
.github/workflows/tag.yml
vendored
@ -25,9 +25,8 @@ jobs:
|
|||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
run: |
|
run: |
|
||||||
$threads = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
cmake --build . --config Debug
|
||||||
cmake --build . --config Debug --parallel $threads
|
cmake --build . --config Release
|
||||||
cmake --build . --config Release --parallel $threads
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
working-directory: build
|
working-directory: build
|
||||||
|
|||||||
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
@ -33,9 +33,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
run: |
|
run: cmake --build . --config ${{matrix.build_type}}
|
||||||
$threads = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
|
||||||
cmake --build . --config ${{matrix.build_type}} --parallel $threads
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user