Skip to content

Commit dbac992

Browse files
Minor bug fixes and potential cmake pre-installation test
1 parent 4063e6a commit dbac992

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/release_python_package_to_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Install CMake
3131
if: steps.cache-cmake.outputs.cache-hit != 'true'
32-
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --yes
32+
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --yes --limit-output
3333

3434
- name: Install Meson using Python
3535
run: |
@@ -167,7 +167,7 @@ jobs:
167167

168168
- name: Install CMake
169169
if: steps.cache-cmake.outputs.cache-hit != 'true'
170-
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --yes
170+
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --yes --limit-output
171171

172172
# Install Python build deps (reuses pip cache above)
173173
- name: Install Python build tools

.github/workflows/wintest.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Windows CMAKE test
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build_deps_windows:
8+
name: Build Windows Dependencies
9+
runs-on: windows-latest
10+
steps:
11+
- name: Check CMake version
12+
run: cmake --version

0 commit comments

Comments
 (0)