From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web09.818.1650405291950449794 for ; Tue, 19 Apr 2022 14:54:52 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=JHNUbmlt; spf=pass (domain: kernel.org, ip: 139.178.84.217, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 60445617A3 for ; Tue, 19 Apr 2022 21:54:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 52662C385B0 for ; Tue, 19 Apr 2022 21:54:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650405290; bh=9j1pmdAEAkN4i201Ob/bcqEB10eqigOsaOcMBZUDkLI=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=JHNUbmlthwqI6YrU4cft+436/6Oo1Q3WqHFHIc3jxCMNXTexKXNhT7l0OsOSfgSKV 2ORqaJE8ADmGhxrpUxELmvrEEbs6sxr0+76To59pVpnY4GURs4If3irRY0lpFIyrqh Ns6dllXX+VGTChE3tzZ0CS6EjYQtGVd1qGIYYtFiwfexCCQ+3+oXOQMQwdM6iHeHiY BeOxOrLWu/Q3dGaDehoiVce6tTRda/r6MvKnKdR0VtMFKNBtWooCLTN0I6zLztp4SH GxiJGpTWH2nVGOIyHQaqg4GpbogIn6oSljPgrxRYw/XltWJoMJpdUD1NY3P9u3TAOd TnOc0Cno2Sf2g== Received: by mail-oi1-f181.google.com with SMTP id b188so23865oia.13 for ; Tue, 19 Apr 2022 14:54:50 -0700 (PDT) X-Gm-Message-State: AOAM5334BLSgPpgJ1qT+MzAd0btgDG+Jhc6mYe3c7LK688l3i3vMh8po Q3+jaF/DUiwuNkMU1emXwvE65kn6fJUHXTcqjyc= X-Google-Smtp-Source: ABdhPJzUVkV4/Q4+60uiu8EOgffNEqoJBS8NMcIo1P6hVW1kI2x6vtKhboR+MVjndtjBYCPUWv35/kBhkm2S6V2akKY= X-Received: by 2002:a05:6808:1596:b0:2f7:5d89:eec7 with SMTP id t22-20020a056808159600b002f75d89eec7mr325517oiw.228.1650405289412; Tue, 19 Apr 2022 14:54:49 -0700 (PDT) MIME-Version: 1.0 References: <20220419073448.165566-1-osteffen@redhat.com> In-Reply-To: <20220419073448.165566-1-osteffen@redhat.com> From: "Ard Biesheuvel" Date: Tue, 19 Apr 2022 23:54:38 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 0/4] CI: Use Fedora 35 container for Linux jobs To: Oliver Steffen Cc: Andrew Fish , Ard Biesheuvel , "Feng, Bob C" , Bret Barkelew , edk2-devel-groups-io , "Liming Gao (Byosoft address)" , Jiewen Yao , Jordan Justen , Gerd Hoffmann , Michael Kinney , Leif Lindholm , Ray Ni , Sami Mujawar , Sean Brogan , Yuwei Chen Content-Type: text/plain; charset="UTF-8" On Tue, 19 Apr 2022 at 09:35, Oliver Steffen wrote: > > PR: https://github.com/tianocore/edk2/pull/2711 > > Update CI, run all Linux (aka Ubuntu-GCC5) based jobs in a custom > Fedora 35 container. Why? > 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. > It would help tremendously if you could include why doing any of this is neces > 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 >