From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id C33893858436; Wed, 22 Feb 2023 07:23:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C33893858436 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677050591; bh=Fg+Gp71YNM/PifUpGqpLQv67UgIXV/6em27NfGhBeXg=; h=From:To:Subject:Date:From; b=qKF6e8mHQV3sbzdLMUTS+drUtfquzw7MuWuikLoOhRKeLLvVZS8oAObdHQQANJQ/8 Am5KKNApmcZbSKwjsn18Qk/fLD5+Zu70r5/NbgJDrdlFkgdXMsSU19vzj8R7mx2BLg kv22rP+tdVauhvqlAswPvGsBhDMLbKg38xT6xVjY= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/rust/master] ci: Run GCC 4.8 job in Ubuntu 18.04 container X-Act-Checkin: gcc X-Git-Author: Arthur Cohen X-Git-Refname: refs/heads/devel/rust/master X-Git-Oldrev: 0d5fe7b9aee68e6cf44612522b181bbff5a46753 X-Git-Newrev: 429e258dbe70b8277f3cef26392503c21a68f374 Message-Id: <20230222072311.C33893858436@sourceware.org> Date: Wed, 22 Feb 2023 07:23:11 +0000 (GMT) List-Id: https://gcc.gnu.org/g:429e258dbe70b8277f3cef26392503c21a68f374 commit 429e258dbe70b8277f3cef26392503c21a68f374 Author: Arthur Cohen Date: Tue Feb 21 14:08:10 2023 +0100 ci: Run GCC 4.8 job in Ubuntu 18.04 container We should probably think about building GCC 4.8 from source from time to time and hosting the image on our Dockerhub, but I think this is okay as well for now. ChangeLog: * .github/workflows/ccpp.yml: Run GCC 4.8 action in ubuntu 18.04 container Diff: --- .github/workflows/ccpp.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 0e95c04625e..fc8acc6776c 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -166,14 +166,18 @@ jobs: build-and-check-gcc-48: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 + container: ubuntu:18.04 + env: + # otherwise we hang when installing tzdata + DEBIAN_FRONTEND: noninteractive steps: - uses: actions/checkout@v2 - name: Install Deps run: | - sudo apt-get update; - sudo apt-get install -y \ + apt-get update; + apt-get install -y \ automake \ autoconf \ libtool \