Skip to content

Commit b8af63f

Browse files
committed
fixup! ci: Test CMake edge cases
1 parent d448f6f commit b8af63f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/cmake.yml

+3
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ jobs:
273273
configure_options: '-DCMAKE_BUILD_TYPE=Debug'
274274
cache_suffix: '-debug'
275275
exe_extension: '.exe'
276+
# Avoid "No space left on device" error.
277+
skip_install: 'true'
276278

277279
steps:
278280
- name: Checkout
@@ -355,6 +357,7 @@ jobs:
355357
ctest --test-dir build -j $(nproc)
356358
357359
- name: Install
360+
if: ${{ matrix.host.skip_install != 'true' }}
358361
run: |
359362
cmake --install build --prefix install
360363
tree install

0 commit comments

Comments
 (0)