From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id D93273858D33; Tue, 17 Oct 2023 00:19:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D93273858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697501970; bh=RiKKdBuSCh9U91i85UsKooz7dQsnZ/W8Q9lc+UnUJwQ=; h=From:To:Subject:Date:From; b=EwEb4xd64i0jHC3bMmKMirMiIYnuhva7TYL7lAUWVIlXci5GtyJq5N2HUTVyC57Vh 2jdNwC7Q4IahCWezKCHTlCQC/DCEcQYcQowuczFGQ0+CA6hut9dXfqEAwGNRjOGYih mR7OfvZGYzJo5dK1y/+1/YEW2Yn0MmFT+gY6L398= 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: ea929b66a84e26cf9d5a4ab256d780cf17c57591 X-Git-Newrev: d38fe5f4c4cf4182db51e840c0cd86e217eced1f Message-Id: <20231017001930.D93273858D33@sourceware.org> Date: Tue, 17 Oct 2023 00:19:30 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d38fe5f4c4cf4182db51e840c0cd86e217eced1f commit d38fe5f4c4cf4182db51e840c0cd86e217eced1f Author: Eric Gallager Date: Mon Oct 16 20:17:31 2023 -0400 Update linux.yaml "upload-artifact" doesn't allow relative paths, apparently 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 ead4304f5112..37af03f157f7 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -181,5 +181,7 @@ jobs: name: logfiles # A file, directory or wildcard pattern that describes what to upload path: | - ./*.log - ../build/*.log + *.log + build/*.log + path/*.log + testsuite/*.log