Break cygwin build and run tests into two different steps to try to diagnose the timeout.

This commit is contained in:
Ward Fisher 2024-07-16 11:00:59 -06:00
parent e5973deda1
commit 85e5d11374

View File

@ -78,10 +78,15 @@ jobs:
if [ $(find /tmp/pretend-root/$(pwd) -type f | wc -l) -gt 0 ]; then exit 1; fi
fi
- name: (Autotools) Build and run tests
- name: (Autotools) Build tests
timeout-minutes: 30
run: |
make check -j8 SHELL=/bin/dash
make check -j 8 TESTS="" SHELL=/bin/dash
- name: (Autotools) Run tests
timeout-minutes: 30
run: |
make check -j 8 SHELL=/bin/dash
build-and-test-cmake:
name: Cygwin-based CMake tests