Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:
REGISTRY_USER="almalinuxorg+airibarr_bot"
IMAGE_PATH="almalinuxorg"
IMAGE_NAME="atomic-desktop"
PLATFORMS="amd64,amd64/v2"
PLATFORMS="arm64,amd64,amd64/v2"
VARIANTS="gnome,kde"

echo "REGISTRY=${REGISTRY}" >> $GITHUB_OUTPUT
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ FROM quay.io/almalinuxorg/almalinux-bootc:10@sha256:33cdd2cd472e007b7e14c8d534de
ARG IMAGE_NAME
ARG IMAGE_REGISTRY
ARG VARIANT
ARG TARGETARCH

RUN --mount=type=tmpfs,dst=/opt \
--mount=type=tmpfs,dst=/tmp \
Expand Down
20 changes: 18 additions & 2 deletions files/scripts/20-desktop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,24 @@
set -xeuo pipefail

if [[ "${VARIANT}" == "gnome" ]]; then
dnf install -y \
@"Workstation"
# aarch64 doesn't have @workstation group
if [[ "${TARGETARCH}" == "arm64" ]]; then
dnf install -y \
@core \
@fonts \
@gnome-desktop \
@guest-desktop-agents \
@hardware-support \
@internet-browser \
@multimedia \
@networkmanager-submodules \
@print-client \
@standard \
@workstation-product
else
dnf install -y \
@"Workstation"
fi

systemctl enable gdm

Expand Down
Loading