mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
Keep producing logs even if make hangs
This commit is contained in:
parent
e89387c089
commit
4cca2b651a
1 changed files with 1 additions and 2 deletions
3
.github/workflows/GNU.yml
vendored
3
.github/workflows/GNU.yml
vendored
|
@ -6,7 +6,6 @@ jobs:
|
|||
gnu:
|
||||
name: Run GNU tests
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 240 # Kill after 4 hours in case something gets stuck
|
||||
steps:
|
||||
# Checks out a copy of your repository on the ubuntu-latest machine
|
||||
- name: Checkout code uutil
|
||||
|
@ -86,7 +85,7 @@ jobs:
|
|||
GNULIB_DIR="${PWD}/gnulib"
|
||||
pushd gnu
|
||||
|
||||
unbuffer make -j "$(nproc)" check SUBDIRS=. RUN_EXPENSIVE_TESTS=yes RUN_VERY_EXPENSIVE_TESTS=yes VERBOSE=no || :
|
||||
unbuffer timeout -sKILL 4h make -j "$(nproc)" check SUBDIRS=. RUN_EXPENSIVE_TESTS=yes RUN_VERY_EXPENSIVE_TESTS=yes VERBOSE=no || : # Kill after 4 hours in case something gets stuck in make
|
||||
- name: Extract tests info
|
||||
shell: bash
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue