From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id AB9D03858D33; Sun, 15 Oct 2023 11:03:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AB9D03858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697367820; bh=WU/n1+tOAXdQvJaqwDCSoY9ok9vsVuoDawGvhpCOjak=; h=From:To:Subject:Date:From; b=EyQowZxJCDBrirLGM0IfBqlmWBNs7lV2b1kOaOgkRCNjoF4yoYVS4phXoO3tlh4mn hLtrAuimO9TF9fsgmzPDpGfPtz/7dzzoMGXGnWlyizrHEAbwh5cMtXvoRpCJBI8fw1 Sc2xWINuWmKKo0g62rKpy8y9seJcApnk2Nl4LJZk= 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: ff39e773be808117d5287572438e74ab2c9eaed6 X-Git-Newrev: 575796064c82958f4e55e74fe618973e98afd145 Message-Id: <20231015110340.AB9D03858D33@sourceware.org> Date: Sun, 15 Oct 2023 11:03:40 +0000 (GMT) List-Id: https://gcc.gnu.org/g:575796064c82958f4e55e74fe618973e98afd145 commit 575796064c82958f4e55e74fe618973e98afd145 Author: Eric Gallager Date: Sun Oct 15 07:03:24 2023 -0400 Update linux.yaml I don't get why it needs to compile before building the docs... Diff: --- .github/workflows/linux.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 5f6c6859a58..7c0e09cd2d8 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -105,11 +105,11 @@ jobs: --host=x86_64-linux-gnu \ --target=x86_64-linux-gnu - - name: Make docs + - name: Make docs (pre-build) if: success() run: | cd ../build - echo "make dvi" && time make dvi + echo "make dvi-fixincludes" && time make dvi-fixincludes echo "make pdf" && time make pdf echo "make html" && time make html @@ -125,6 +125,7 @@ jobs: run: | cd ../build echo "make info" && time make info + echo "make dvi" && time make dvi - name: Debug failure if: failure()