From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id C87653858D32; Mon, 16 Oct 2023 02:23:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C87653858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697423003; bh=6unqL0JqAqa1JLuyum78LMopVGfaMFQFg9dBbqwKacM=; h=From:To:Subject:Date:From; b=uaPUpiCHW5E9594nX1/1kLD6Qz4jYLoEjra/EXMI4ph9bbZfsfzVVGxpY4m8kjjuY 8bfmmaZ/Y/0I3QfZ0QvLKDHK7tGYAToloRzTmWk+5tiiXsKgq0HFNc99+6aFl6PXmy dmDS1+fF7rm0vMSDQJG8WI+0Ol7+KXSFwL/STEcA= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Eric Gallager To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/egallager/heads/CI)] Update linux.yaml X-Act-Checkin: gcc X-Git-Author: Eric Gallager X-Git-Refname: refs/users/egallager/heads/CI X-Git-Oldrev: 122eaa04f051d841767e95fe743d0361c5fae122 X-Git-Newrev: 59eb82bfdc1ce4a1e8c5f576e4cbd0b7878f5dfc Message-Id: <20231016022323.C87653858D32@sourceware.org> Date: Mon, 16 Oct 2023 02:23:23 +0000 (GMT) List-Id: https://gcc.gnu.org/g:59eb82bfdc1ce4a1e8c5f576e4cbd0b7878f5dfc commit 59eb82bfdc1ce4a1e8c5f576e4cbd0b7878f5dfc Author: Eric Gallager Date: Sun Oct 15 22:21:59 2023 -0400 Update linux.yaml last build timed out; let's see if we can fix that... Diff: --- .github/workflows/linux.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 7b9d9741782..1ab67a82b57 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -21,6 +21,7 @@ jobs: build: name: ${{ matrix.name }}-build runs-on: ubuntu-latest + timeout-minutes: 720 strategy: matrix: include: @@ -36,7 +37,7 @@ jobs: - name: Install dependencies run: | sudo apt-get -qq update - sudo apt install -y gcc-multilib build-essential flex zlib1g-dev gnat gdc expect dejagnu libc-dev libc-devtools texlive findutils + sudo apt install -y gcc-multilib build-essential flex zlib1g-dev gnat gdc expect dejagnu libc-dev libc-devtools texlive findutils binutils autogen gettext - name: Install dependencies for aarch64 if: success() && contains(matrix.target, 'aarch64') @@ -109,6 +110,7 @@ jobs: cd ../build if test -x "$(which nproc)"; then echo "nproc says that we can use $(nproc) build jobs"; else echo "error: missing nproc!" >&2 && exit 1; fi time (make -j"$(nproc)" | tee build.log) + if test -e build.log; then stat build.log && wc -l build.log; fi - name: Debug failure if: failure() @@ -148,6 +150,6 @@ jobs: if test -x /usr/bin/x86_64-linux-gnu-gcc; then /usr/bin/x86_64-linux-gnu-gcc -v; elif test -x ../build/gcc/xgcc; then ../build/gcc/xgcc --v; fi cd ../build if test -e build.log; then make warning.log; fi - time make -k check + time (make -k -j"$(nproc)" check RUNTESTFLAGS="compile.exp dg-torture.exp execute.exp old-deja.exp" | tee testsuite_output.log) if test -e warning.log; then make mail-report-with-warnings.log; else make mail-report.log; fi if test -x mail-report-with-warnings.log; then ./mail-report-with-warnings.log; elif test -x mail-report.log; then ./mail-report.log; fi