From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web09.1643.1650353718142862897 for ; Tue, 19 Apr 2022 00:35:18 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=Il1t+qHR; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: osteffen@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1650353717; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=ax0o/myn7rMHoPnoT31tLU+rN1QnCjgWE5/JeibgVTE=; b=Il1t+qHRpte4be782PCwlNdviG1SjK+6jGSZKv2LmELQF/kVPcLeWCs7I78j3iXsYOi8gK yXn0k+wQ6dxSj/QY1qK4W3+5/Qjvn912cH00uFuuw2T+mbv4CNdbUmgFzssmjr/uUWlKa/ fj7nf2d1ByKg/PmT7QLMQoV0D9IOkGo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-124-NWAOy30nPIOHxzK2d_puzg-1; Tue, 19 Apr 2022 03:35:14 -0400 X-MC-Unique: NWAOy30nPIOHxzK2d_puzg-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8C7AD185A7A4; Tue, 19 Apr 2022 07:35:13 +0000 (UTC) Received: from osteffen-laptop.fritz.box (unknown [10.39.192.173]) by smtp.corp.redhat.com (Postfix) with ESMTP id C3D5E145F94C; Tue, 19 Apr 2022 07:35:10 +0000 (UTC) From: "Oliver Steffen" To: osteffen@redhat.com Cc: afish@apple.com, ardb+tianocore@kernel.org, bob.c.feng@intel.com, Bret.Barkelew@microsoft.com, devel@edk2.groups.io, gaoliming@byosoft.com.cn, jiewen.yao@intel.com, jordan.l.justen@intel.com, kraxel@redhat.com, michael.d.kinney@intel.com, quic_llindhol@quicinc.com, ray.ni@intel.com, sami.mujawar@arm.com, sean.brogan@microsoft.com, yuwei.chen@intel.com Subject: [PATCH 0/4] CI: Use Fedora 35 container for Linux jobs Date: Tue, 19 Apr 2022 09:34:44 +0200 Message-Id: <20220419073448.165566-1-osteffen@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.7 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=osteffen@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true PR: https://github.com/tianocore/edk2/pull/2711 Update CI, run all Linux (aka Ubuntu-GCC5) based jobs in a custom Fedora 35 container. The image provides gcc 11 from Fedora for all architectures. The external dependencies for gcc have been removed so stuart does not download them. iasl and nasm are also included in the image, but remain as ext-dep for now (CI jobs on Windows need those). The Dockerfiles are here: https://github.com/osteffenrh/edk2-build-images, but they should, of course, then move to a repo in the Tianocore group, or something like that. The images are built automatically via GitHub Actions and then pushed to ghcr.io. Oliver Steffen (4): CI: don't force python verison (Linux only) CI: add ~/.local/bin to PATH (Linux only) CI: Use Fedora 35 container (Linux only) BaseTools: Remove ext. gcc dependencies (Linux only) .../templates/basetools-build-steps.yml | 9 -------- .../templates/platform-build-run-steps.yml | 7 ++++++ .../templates/pr-gate-build-job.yml | 3 +++ .azurepipelines/templates/pr-gate-steps.yml | 7 ++++++ .../.azurepipelines/Ubuntu-GCC5.yml | 6 ++--- BaseTools/Bin/gcc_aarch64_linux_ext_dep.yaml | 21 ------------------ BaseTools/Bin/gcc_arm_linux_ext_dep.yaml | 21 ------------------ .../Bin/gcc_riscv64_unknown_ext_dep.yaml | 22 ------------------- .../.azurepipelines/Ubuntu-GCC5.yml | 2 ++ .../.azurepipelines/Ubuntu-GCC5.yml | 6 ++--- 10 files changed, 23 insertions(+), 81 deletions(-) delete mode 100644 BaseTools/Bin/gcc_aarch64_linux_ext_dep.yaml delete mode 100644 BaseTools/Bin/gcc_arm_linux_ext_dep.yaml delete mode 100644 BaseTools/Bin/gcc_riscv64_unknown_ext_dep.yaml -- 2.35.1