CMake: Re-enable Cygwin tests without Ninja.

pull/953/merge
Vollstrecker 3 weeks ago committed by Mark Adler
parent 6925d39b50
commit 734f974753
  1. 62
      .github/workflows/msys-cygwin.yml

@ -40,35 +40,33 @@ jobs:
- name: Run tests - name: Run tests
run: ctest --output-on-failure --test-dir build -C Release run: ctest --output-on-failure --test-dir build -C Release
# cygwin: cygwin:
# strategy: strategy:
# fail-fast: false fail-fast: false
# runs-on: windows-latest runs-on: windows-latest
# defaults: defaults:
# run: run:
# shell: C:\cygwin\bin\bash.exe --login -o igncr '{0}' shell: C:\cygwin\bin\bash.exe --login -o igncr '{0}'
# name: Cygwin name: Cygwin
# steps: steps:
# - name: Checkout - name: Checkout
# uses: actions/checkout@v4 uses: actions/checkout@v4
# with: with:
# fetch-depth: 0 fetch-depth: 0
# - name: Setup cygwin - name: Setup cygwin
# uses: cygwin/cygwin-install-action@master uses: cygwin/cygwin-install-action@master
# with: with:
# packages: >- packages: >-
# cmake cmake
# cygwin-devel cygwin-devel
# gcc-core gcc-core
# gcc-g++ gcc-g++
# ninja - name: Configure
# - name: Configure run: |
# run: | cmake /cygdrive/d/a/zlib/zlib \
# cmake /cygdrive/d/a/zlib/zlib \ -B build \
# -B build \ -DCMAKE_BUILD_TYPE=Release
# -DCMAKE_BUILD_TYPE=Release \ - name: Build
# -G Ninja run: cmake --build build --config Release
# - name: Build - name: Run tests
# run: cmake --build build --config Release run: ctest --output-on-failure --test-dir build -C Release
# - name: Run tests
# run: ctest --output-on-failure --test-dir build -C Release

Loading…
Cancel
Save