From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id 05E433858D33; Sun, 15 Oct 2023 09:16:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 05E433858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697361417; bh=+qVuvHonK1i1zHdQoBVMrpU6VdP158bKzofbDLt2ZKU=; h=From:To:Subject:Date:From; b=SS6AVsBUAWarVSLjhvI8gyPxnbMZFwufeUOBeTJz//YVWLQHSKWHX147iS0yYxYHo CsQn0yQjyvEhK9UGYdaRy97K50lYe2Fi0GWINZeLv6AZVmq7wqJEwZRVEPC7K9ZUyI 2ooYs6pO9s9bXPIT6Hhyz1c9t2ow+WYKsC5plcFc= 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: 03387feb9ff7fe33abe08d129b20a34fbbf43510 X-Git-Newrev: 8562ebb9b738d04a3d3bb4cb0347d953503737b4 Message-Id: <20231015091657.05E433858D33@sourceware.org> Date: Sun, 15 Oct 2023 09:16:56 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8562ebb9b738d04a3d3bb4cb0347d953503737b4 commit 8562ebb9b738d04a3d3bb4cb0347d953503737b4 Author: Eric Gallager Date: Sun Oct 15 05:16:44 2023 -0400 Update linux.yaml Diff: --- .github/workflows/linux.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 9887c92d16d..f5f2d1f29a4 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -36,7 +36,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-devtools + sudo apt install -y gcc-multilib build-essential flex zlib1g-dev gnat gdc expect dejagnu libc-devtools exuberant-ctags - name: Install dependencies for aarch64 if: success() && contains(matrix.target, 'aarch64') @@ -58,8 +58,14 @@ jobs: - name: Download prerequisites if: success() + env: + revision: ${{ github.head_ref }} run: | - ./contrib/download_prerequisites + ./contrib/download_prerequisites + { + date + echo "$(TZ=UTC date) (revision ${revision})" + } > LAST_UPDATED - name: Configure x86_64 if: success() && matrix.target == 'x86_64'