aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2024-12-31 19:10:41 +0100
committerMark Adler <madler@alumni.caltech.edu>2025-01-31 20:02:26 -0800
commit00cbe1d6b1abf6d766bb69c622ee1fcf725d57df (patch)
tree6aff2b06066813673cf0aad18a976d8466be1dcc /.github
parentb9cf26c056fa422d97ddd77657ca49602f6b58d2 (diff)
downloadzlib-00cbe1d6b1abf6d766bb69c622ee1fcf725d57df.tar.gz
zlib-00cbe1d6b1abf6d766bb69c622ee1fcf725d57df.tar.bz2
zlib-00cbe1d6b1abf6d766bb69c622ee1fcf725d57df.zip
CMake: Disable testing on Cygwin.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/msys-cygwin.yml64
1 files changed, 32 insertions, 32 deletions
diff --git a/.github/workflows/msys-cygwin.yml b/.github/workflows/msys-cygwin.yml
index 5ad7a73..276959b 100644
--- a/.github/workflows/msys-cygwin.yml
+++ b/.github/workflows/msys-cygwin.yml
@@ -40,35 +40,35 @@ jobs:
40 - name: Run tests 40 - name: Run tests
41 run: ctest --output-on-failure --test-dir build -C Release 41 run: ctest --output-on-failure --test-dir build -C Release
42 42
43 cygwin: 43# cygwin:
44 strategy: 44# strategy:
45 fail-fast: false 45# fail-fast: false
46 runs-on: windows-latest 46# runs-on: windows-latest
47 defaults: 47# defaults:
48 run: 48# run:
49 shell: C:\cygwin\bin\bash.exe --login -o igncr '{0}' 49# shell: C:\cygwin\bin\bash.exe --login -o igncr '{0}'
50 name: Cygwin 50# name: Cygwin
51 steps: 51# steps:
52 - name: Checkout 52# - name: Checkout
53 uses: actions/checkout@v4 53# uses: actions/checkout@v4
54 with: 54# with:
55 fetch-depth: 0 55# fetch-depth: 0
56 - name: Setup cygwin 56# - name: Setup cygwin
57 uses: cygwin/cygwin-install-action@master 57# uses: cygwin/cygwin-install-action@master
58 with: 58# with:
59 packages: >- 59# packages: >-
60 cmake 60# cmake
61 cygwin-devel 61# cygwin-devel
62 gcc-core 62# gcc-core
63 gcc-g++ 63# gcc-g++
64 ninja 64# ninja
65 - name: Configure 65# - name: Configure
66 run: | 66# run: |
67 cmake /cygdrive/d/a/zlib/zlib \ 67# cmake /cygdrive/d/a/zlib/zlib \
68 -B build \ 68# -B build \
69 -DCMAKE_BUILD_TYPE=Release \ 69# -DCMAKE_BUILD_TYPE=Release \
70 -G Ninja 70# -G Ninja
71 - name: Build 71# - name: Build
72 run: cmake --build build --config Release 72# run: cmake --build build --config Release
73 - name: Run tests 73# - name: Run tests
74 run: ctest --output-on-failure --test-dir build -C Release 74# run: ctest --output-on-failure --test-dir build -C Release