aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/msys-cygwin.yml62
1 files changed, 30 insertions, 32 deletions
diff --git a/.github/workflows/msys-cygwin.yml b/.github/workflows/msys-cygwin.yml
index 276959b..4f5018c 100644
--- a/.github/workflows/msys-cygwin.yml
+++ b/.github/workflows/msys-cygwin.yml
@@ -40,35 +40,33 @@ 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 - name: Configure
65# - name: Configure 65 run: |
66# run: | 66 cmake /cygdrive/d/a/zlib/zlib \
67# cmake /cygdrive/d/a/zlib/zlib \ 67 -B build \
68# -B build \ 68 -DCMAKE_BUILD_TYPE=Release
69# -DCMAKE_BUILD_TYPE=Release \ 69 - name: Build
70# -G Ninja 70 run: cmake --build build --config Release
71# - name: Build 71 - name: Run tests
72# run: cmake --build build --config Release 72 run: ctest --output-on-failure --test-dir build -C Release
73# - name: Run tests
74# run: ctest --output-on-failure --test-dir build -C Release