Skip to content

Commit b719926

Browse files
committed
No longer install cmake from choco due to Github Action errors
1 parent b0b412b commit b719926

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/Crate-publishing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
if: contains(matrix.config.os, 'win')
6262
shell: bash
6363
run: |
64-
choco install ninja cmake
64+
choco install ninja
6565
6666
- name: '🛠️ macOS build dependencies'
6767
if: contains(matrix.config.os, 'macOS')

.github/workflows/Nuget-publishing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
if: contains(matrix.config.name, 'MSVC 64')
7272
shell: bash
7373
run: |
74-
choco install ninja cmake
74+
choco install ninja
7575
ninja --version
7676
cmake --version
7777
mkdir build

.github/workflows/build-uc2.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
if: contains(matrix.config.name, 'MSVC 64')
168168
shell: bash
169169
run: |
170-
choco install ninja cmake
170+
choco install ninja
171171
ninja --version
172172
cmake --version
173173
mkdir build
@@ -193,7 +193,7 @@ jobs:
193193
if: contains(matrix.config.name, 'MSVC 32')
194194
shell: bash
195195
run: |
196-
choco install ninja cmake
196+
choco install ninja
197197
ninja --version
198198
cmake --version
199199
mkdir build

.github/workflows/build-wheels-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
if: runner.os == 'Windows'
6969
shell: bash
7070
run: |
71-
choco install ninja cmake
71+
choco install ninja
7272
7373
- name: '🛠️ macOS dependencies'
7474
if: runner.os == 'macOS'
@@ -264,7 +264,7 @@ jobs:
264264
if: runner.os == 'Windows'
265265
shell: bash
266266
run: |
267-
choco install ninja cmake
267+
choco install ninja
268268
269269
- name: '🛠️ macOS dependencies'
270270
if: runner.os == 'macOS'

0 commit comments

Comments
 (0)