From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id 155E43858D32; Sun, 15 Oct 2023 18:51:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 155E43858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697395866; bh=6A/A1hUkfTbD9jUXzVlkAtlAjDM5IPb9P80NAbwwOYs=; h=From:To:Subject:Date:From; b=K1bsGIZk3EZPBv/nadvp/YBUDLV26WjQxG0aq8IF1X2+XR0PNghDeHa4Ld6By8Q8r lECpdmPYr9pJQVc64wfTZpO22QzmGAFgd+QOM5k5JVQBkA+4Lyo4KrRS3YBdaJymzi xcPMmsxZxObFwbJ53P98em5bgkKg7z7hEDZLX7fo= 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: 575796064c82958f4e55e74fe618973e98afd145 X-Git-Newrev: f59981d56406c2284e42ca5f33c0f971f10f8e9b Message-Id: <20231015185106.155E43858D32@sourceware.org> Date: Sun, 15 Oct 2023 18:51:06 +0000 (GMT) List-Id: https://gcc.gnu.org/g:f59981d56406c2284e42ca5f33c0f971f10f8e9b commit f59981d56406c2284e42ca5f33c0f971f10f8e9b Author: Eric Gallager Date: Sun Oct 15 14:50:48 2023 -0400 Update linux.yaml docbuilding is annoying Diff: --- .github/workflows/linux.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 7c0e09cd2d8..abc707f07c2 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -109,9 +109,8 @@ jobs: if: success() run: | cd ../build - echo "make dvi-fixincludes" && time make dvi-fixincludes - echo "make pdf" && time make pdf - echo "make html" && time make html + echo "make pdf" && (time make pdf-fixincludes) && echo "pdfs done" + echo "make html" && (time make html) && echo "html done" - name: Make if: success() @@ -124,8 +123,8 @@ jobs: if: success() run: | cd ../build - echo "make info" && time make info - echo "make dvi" && time make dvi + echo "make info" && (time make info) && echo "info done" + echo "make dvi" && (time make dvi) && echo "dvi done" - name: Debug failure if: failure()