forked from tianocore/containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Fedora 39 image with gcc13 (tianocore#82) Added Fedora 39 base image, providing GCC13 and Python 3.12. Signed-off-by: Chao Li <[email protected]> * Fedora 39 fixups (tianocore#87) * Fedora 39: Use Qemu from package repo Fedora 39 ships Qemu 8. We can use that instead of building it from source. Also add Qemu for RiscV. Signed-off-by: Oliver Steffen <[email protected]> * Allow using dev image as root Don't abort the entrypoint script if the user-id already exists. This allows using the dev images as root or when using Podman, which does some user mapping already. See issue tianocore#76 and PR tianocore#77. Signed-off-by: Oliver Steffen <[email protected]> * Readme: Add Fedora 39 image to table Add links and badges for the Fedora 39 images to the table. Signed-off-by: Oliver Steffen <[email protected]> --------- Signed-off-by: Oliver Steffen <[email protected]> * Fedora 39 Build Fixes (tianocore#88) * Fedora39: Don't use fixed package versions Specifying version numbers for the packages provided by the Linux distribution is counterproductive. The available patchlevel versions of a package can change within a Fedora release. This can breaks image builds which requires additional manual work. Since the major versions stay fixed, there should not be any compatibility issues between image builds. Additionally, bug fixes are picked up automatically. This patch removes the explicit version numbers from the packages and installs the default versions instead. Signed-off-by: Oliver Steffen <[email protected]> * Fedora 39: Install python-setuptools via pip Install python-setuptools via pip instead of taking it from the Fedora repo. This avoids possible conflicts with `pip install --upgrade ...` Signed-off-by: Oliver Steffen <[email protected]> --------- Signed-off-by: Oliver Steffen <[email protected]> --------- Signed-off-by: Chao Li <[email protected]> Signed-off-by: Oliver Steffen <[email protected]> Co-authored-by: Chao Li <[email protected]> Co-authored-by: Oliver Steffen <[email protected]>
- Loading branch information
1 parent
e286dea
commit 16ec7c5
Showing
5 changed files
with
222 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# GitHub Action Workflow for building the Fedora 39 images. | ||
|
||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
|
||
name: "Fedora 39 Images" | ||
|
||
# This workflow only runs (on the main branch or on PRs targeted | ||
# at the main branch) and if files inside the Fedora-39 directory | ||
# have been modifed/added/removed... | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- 'Fedora-39/**' | ||
pull_request: | ||
branches: [ main ] | ||
paths: | ||
- 'Fedora-39/**' | ||
|
||
jobs: | ||
Build_Image: | ||
uses: ./.github/workflows/build-image.yaml | ||
with: | ||
image_name: "Fedora-39" | ||
sub_images: "build test dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Dockerfile for building container images for use in the EDK2 CI. | ||
# | ||
# Copyright (C) 2022, Red Hat, Inc. | ||
# Copyright (c) 2023 Loongson Technology Corporation Limited. All rights reserved. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
# This file contains the definitions for images to be used for different | ||
# jobs in the EDK2 CI pipeline. The set of tools and dependencies is split into | ||
# multiple images to reduce the overall download size by providing images | ||
# tailored to the task of the CI job. Currently there are two images: "build" | ||
# and "test". | ||
# The images are intended to run on x86_64. | ||
|
||
|
||
# Build Image | ||
# This image is intended for jobs that compile the source code and as a general | ||
# purpose image. It contains the toolchains for all supported architectures, and | ||
# all build dependencies. | ||
FROM registry.fedoraproject.org/fedora:39 AS build | ||
ARG CSPELL_VERSION=8.0.0 | ||
ARG MARKDOWNLINT_VERSION=0.37.0 | ||
ARG POWERSHELL_VERSION=7.4.0 | ||
ARG DOTNET_VERSION=6.0 | ||
RUN dnf \ | ||
--assumeyes \ | ||
--nodocs \ | ||
--setopt=install_weak_deps=0 \ | ||
install \ | ||
acpica-tools \ | ||
dotnet-runtime-${DOTNET_VERSION} \ | ||
curl \ | ||
gcc-c++ \ | ||
gcc \ | ||
gcc-aarch64-linux-gnu \ | ||
gcc-arm-linux-gnu \ | ||
gcc-riscv64-linux-gnu \ | ||
gcc-loongarch64-linux-gnu \ | ||
git \ | ||
lcov \ | ||
libX11-devel \ | ||
libXext-devel \ | ||
libuuid-devel \ | ||
make \ | ||
nuget \ | ||
nasm \ | ||
https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell-${POWERSHELL_VERSION}-1.rh.x86_64.rpm \ | ||
python3 \ | ||
python3-distutils-extra \ | ||
python3-pip \ | ||
python3-devel \ | ||
nodejs \ | ||
npm \ | ||
tar \ | ||
sudo | ||
RUN alternatives --install /usr/bin/python python /usr/bin/python3 1 | ||
RUN pip install --upgrade pip lcov_cobertura setuptools | ||
|
||
ENV GCC5_AARCH64_PREFIX /usr/bin/aarch64-linux-gnu- | ||
ENV GCC5_ARM_PREFIX /usr/bin/arm-linux-gnu- | ||
ENV GCC5_RISCV64_PREFIX /usr/bin/riscv64-linux-gnu- | ||
ENV GCC5_LOONGARCH64_PREFIX /usr/bin/loongarch64-linux-gnu- | ||
|
||
# Tools used by build extensions. | ||
RUN npm install -g npm \ | ||
cspell@${CSPELL_VERSION} \ | ||
markdownlint-cli@${MARKDOWNLINT_VERSION} | ||
|
||
# Test Image | ||
# This image is intended for jobs that run tests (and possibly also build) | ||
# firmware images. It is based on the build image and adds Qemu for the | ||
# architectures under test. | ||
|
||
FROM build AS test | ||
RUN dnf \ | ||
--assumeyes \ | ||
--nodocs \ | ||
--setopt=install_weak_deps=0 \ | ||
install \ | ||
qemu-system-arm \ | ||
qemu-system-aarch64 \ | ||
qemu-system-loongarch64 \ | ||
qemu-system-x86 \ | ||
qemu-system-riscv \ | ||
qemu-ui-gtk | ||
|
||
# Dev Image | ||
# This image is intended for local use. This builds on the test image but adds | ||
# tools for local developers. | ||
FROM test AS dev | ||
ENV GCM_LINK=https://github.com/GitCredentialManager/git-credential-manager/releases/download/v2.0.785/gcm-linux_amd64.2.0.785.tar.gz | ||
RUN dnf \ | ||
--assumeyes \ | ||
--nodocs \ | ||
--setopt=install_weak_deps=0 \ | ||
install \ | ||
libicu \ | ||
curl \ | ||
tar \ | ||
vim \ | ||
nano | ||
|
||
# Setup the git credential manager for developer credentials. | ||
RUN curl -L "${GCM_LINK}" | tar -xz -C /usr/local/bin | ||
RUN git-credential-manager-core configure | ||
RUN git config --global credential.credentialStore cache | ||
RUN cp /etc/skel/.bashrc /root/.bashrc | ||
|
||
# Set the entry point | ||
COPY fedora39_dev_entrypoint.sh /usr/libexec/entrypoint | ||
ENTRYPOINT ["/usr/libexec/entrypoint"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Fedora 39 Images | ||
|
||
This set of images is based on the Fedora 39 minimal image. | ||
It has three flavors, `build`, `test`, and `dev`. | ||
The first two are primarily intended for automated builds | ||
and CI usage. | ||
|
||
The `build` image contains the compilers and build tools | ||
needed for building EDK2 under Linux (x86_64). | ||
|
||
The `test` image extends the `build` image and adds Qemu for | ||
testing purposes. | ||
|
||
The `dev` image in turn extends the `test` image and adds developer | ||
convenience tools, for example the git credential manager. | ||
|
||
These images include: | ||
- gcc 13.2 (x86, arm, aarch64, riscv, loongarch64) | ||
- nasm 2.16.01 | ||
- Python 3.12 | ||
- Qemu 8.1.3 (x86, arm, aarch64, loongarch64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
|
||
set -e | ||
|
||
##################################################################### | ||
# Run as the same uid/gid as the developer. | ||
|
||
|
||
##################################################################### | ||
# Check for required env | ||
if [ -z "${EDK2_DOCKER_USER_HOME}" ] || [ ! -d "${EDK2_DOCKER_USER_HOME}" ]; then | ||
echo 'Missing EDK2_DOCKER_USER_HOME. Running as root.' | ||
exec "$@" | ||
fi | ||
|
||
##################################################################### | ||
# Create a user to run the command | ||
# | ||
# Docker would run as root, but that creates a permissions mess in a mixed | ||
# development environment where some commands are run inside the container and | ||
# some outside. Instead, we'll create a user with uid/gid to match the one | ||
# running the container. Then, the permissions will be consistent with | ||
# non-docker activities. | ||
# | ||
# - If the caller provides a username, we'll use it. Otherwise, just use an | ||
# arbitrary username. | ||
EDK2_DOCKER_USER=${EDK2_DOCKER_USER:-edk2} | ||
# | ||
# - Get the uid and gid from the user's home directory. | ||
user_uid=$(stat -c "%u" "${EDK2_DOCKER_USER_HOME}") | ||
user_gid=$(stat -c "%g" "${EDK2_DOCKER_USER_HOME}") | ||
# | ||
# - Add the group. We'll take a shortcut here and always name it the same as | ||
# the username. The name is cosmetic, though. The important thing is that the | ||
# gid matches. | ||
groupadd "${EDK2_DOCKER_USER}" -f -o -g "${user_gid}" | ||
# | ||
# - Add the user. | ||
useradd "${EDK2_DOCKER_USER}" -o -u "${user_uid}" -g "${user_gid}" \ | ||
-G wheel -d "${EDK2_DOCKER_USER_HOME}" -M -s /bin/bash | ||
|
||
echo "${EDK2_DOCKER_USER}":tianocore | chpasswd | ||
|
||
##################################################################### | ||
# Cleanup variables | ||
unset user_uid | ||
unset user_gid | ||
|
||
|
||
##################################################################### | ||
# Drop permissions and run the command | ||
if [ "$1" = "su" ]; then | ||
# Special case. Let the user come in as root, if they really want to. | ||
shift | ||
exec "$@" | ||
else | ||
exec runuser -u "${EDK2_DOCKER_USER}" -- "$@" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters