ci(yay): fix missing user (#2730)

* cleanup arch build

* don't doubleptade

* fix pacman-git build

* fix final issues with some sandbox kernels

* use quay because docker is out of steam

* remove docker hub

* -si on testing
This commit is contained in:
Jo
2025-12-13 17:40:16 +01:00
committed by GitHub
parent b526f87e99
commit 4501213a02
6 changed files with 37 additions and 39 deletions

View File

@@ -1,23 +1,41 @@
# Use the jguer/yay-builder image as a parent image with archlinux FROM quay.io/gmanka/archlinuxarm:base-devel
FROM docker.io/jguer/yay-builder LABEL maintainer="Jguer,docker@jguer.space"
# Install extra packages (pacman-contrib and fish) ENV GO111MODULE=on
RUN sudo pacman -Syu --noconfirm pacman-contrib fish git-delta openssh bat go github-cli WORKDIR /app
COPY go.mod .
# asciidoc, doxygen, meson needed for pacman-git
RUN set -eux; \
pacman-key --init; \
pacman -Syu --noconfirm --needed pacman-contrib fish git-delta openssh bat go github-cli archlinux-keyring pacman go git gcc make base-devel sudo asciidoc doxygen meson; \
sed -i 's/^#DisableSandboxFilesystem/DisableSandboxFilesystem/' /etc/pacman.conf; \
sed -i 's/^#DisableSandboxSyscalls/DisableSandboxSyscalls/' /etc/pacman.conf; \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v2.7.2; \
go mod download; \
rm -rf /var/lib/pacman/sync/* /var/cache/pacman/* /tmp/* /var/tmp/*; \
rm -rf /usr/share/man/* /usr/share/doc/* || true; \
yes | pacman -Scc >/dev/null 2>&1 || true
# Create a non-root user first
RUN useradd -m -s /bin/bash docker
# Set passwordless sudo for the docker user # Set passwordless sudo for the docker user
RUN echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/docker RUN echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/docker
# Create a non-root user and switch to it # Switch to the docker user
USER docker USER docker
# Install xgotext # Install xgotext
RUN go install github.com/leonelquinteros/gotext/cli/xgotext@latest RUN go install github.com/leonelquinteros/gotext/cli/xgotext@latest
# Add /app/bin to the PATH # Add /app/bin to the PATH
ENV PATH="/app/bin:/home/docker/go/bin:PATH" ENV PATH="/app/bin:/home/docker/go/bin:$PATH"
# Set the working directory # Set the working directory
WORKDIR /workspace WORKDIR /workspace
# Command to run when starting the container # Command to run when starting the container
CMD ["bash"] CMD ["fish"]

View File

@@ -4,6 +4,7 @@
"context": "..", "context": "..",
"dockerfile": "../.devcontainer/Dockerfile" "dockerfile": "../.devcontainer/Dockerfile"
}, },
"overrideCommand": true,
"customizations": { "customizations": {
"vscode": { "vscode": {
"extensions": [ "extensions": [

View File

@@ -31,12 +31,6 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
@@ -49,7 +43,6 @@ jobs:
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: | images: |
${{ env.REGISTRY_IMAGE }}
ghcr.io/${{ env.REGISTRY_IMAGE }} ghcr.io/${{ env.REGISTRY_IMAGE }}
tags: | tags: |
type=raw,value=latest type=raw,value=latest
@@ -63,7 +56,7 @@ jobs:
file: ci.Dockerfile file: ci.Dockerfile
platforms: ${{ matrix.platform }} platforms: ${{ matrix.platform }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true outputs: type=image,name=ghcr.io/${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
- name: Export digest - name: Export digest
run: | run: |
@@ -93,12 +86,6 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
@@ -111,7 +98,6 @@ jobs:
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: | images: |
${{ env.REGISTRY_IMAGE }}
ghcr.io/${{ env.REGISTRY_IMAGE }} ghcr.io/${{ env.REGISTRY_IMAGE }}
tags: | tags: |
type=raw,value=latest type=raw,value=latest
@@ -121,23 +107,17 @@ jobs:
env: env:
DOCKER_CLI_EXPERIMENTAL: enabled DOCKER_CLI_EXPERIMENTAL: enabled
run: | run: |
# Extract Docker Hub tags
DH_TAGS=$(echo '${{ steps.meta.outputs.tags }}' | grep -v "^ghcr.io" | xargs -I {} echo "-t {}")
# Extract GitHub Container Registry tags # Extract GitHub Container Registry tags
GHCR_TAGS=$(echo '${{ steps.meta.outputs.tags }}' | grep "^ghcr.io" | xargs -I {} echo "-t {}") GHCR_TAGS=$(echo '${{ steps.meta.outputs.tags }}' | xargs -I {} echo "-t {}")
# Create a manifest list using the image digests from /tmp/digests/* # Create a manifest list using the image digests from /tmp/digests/*
DIGESTS=$(for file in /tmp/digests/*; do DIGESTS=$(for file in /tmp/digests/*; do
echo -n "${{ env.REGISTRY_IMAGE }}@$(cat $file) " echo -n "ghcr.io/${{ env.REGISTRY_IMAGE }}@$(cat $file) "
done) done)
# Create the manifest list for Docker Hub
docker buildx imagetools create $DH_TAGS $DIGESTS
# Create the manifest list for GitHub Container Registry # Create the manifest list for GitHub Container Registry
docker buildx imagetools create $GHCR_TAGS $DIGESTS docker buildx imagetools create $GHCR_TAGS $DIGESTS
- name: Inspect image - name: Inspect image
run: | run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:latest docker buildx imagetools inspect ghcr.io/${{ env.REGISTRY_IMAGE }}:latest

View File

@@ -33,7 +33,7 @@ jobs:
useradd github useradd github
echo 'github ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers echo 'github ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
chmod -R 777 pacman-git chmod -R 777 pacman-git
su github -c 'cd pacman-git; yes | makepkg -i --nocheck' su github -c 'cd pacman-git; yes | makepkg -si --nocheck'
- name: Run Build and Tests with pacman-git - name: Run Build and Tests with pacman-git
run: | run: |
make test make test

View File

@@ -7,8 +7,6 @@ ARG ARCH
WORKDIR /app WORKDIR /app
RUN pacman -Syyu --overwrite=* --noconfirm
COPY . . COPY . .
RUN make release VERSION=${VERSION} PREFIX=${PREFIX} ARCH=${ARCH} RUN make release VERSION=${VERSION} PREFIX=${PREFIX} ARCH=${ARCH}

View File

@@ -1,4 +1,4 @@
FROM docker.io/gmanka/archlinuxarm:base-devel FROM quay.io/gmanka/archlinuxarm:base-devel
LABEL maintainer="Jguer,docker@jguer.space" LABEL maintainer="Jguer,docker@jguer.space"
ENV GO111MODULE=on ENV GO111MODULE=on
@@ -6,12 +6,13 @@ WORKDIR /app
COPY go.mod . COPY go.mod .
ARG EXTRA_PKGS="" # asciidoc, doxygen, meson needed for pacman-git
RUN set -eux; \ RUN set -eux; \
pacman-key --init; \ pacman-key --init; \
pacman -Syu --noconfirm --needed archlinux-keyring pacman go git gcc make base-devel sudo; \ pacman -Syu --noconfirm --needed archlinux-keyring pacman go git gcc make base-devel sudo asciidoc doxygen meson; \
if [ -n "${EXTRA_PKGS}" ]; then pacman -S --noconfirm --needed ${EXTRA_PKGS}; fi; \ sed -i 's/^#DisableSandboxFilesystem/DisableSandboxFilesystem/' /etc/pacman.conf; \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v2.4.0; \ sed -i 's/^#DisableSandboxSyscalls/DisableSandboxSyscalls/' /etc/pacman.conf; \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v2.7.2; \
go mod download; \ go mod download; \
rm -rf /var/lib/pacman/sync/* /var/cache/pacman/* /tmp/* /var/tmp/*; \ rm -rf /var/lib/pacman/sync/* /var/cache/pacman/* /tmp/* /var/tmp/*; \
rm -rf /usr/share/man/* /usr/share/doc/* || true; \ rm -rf /usr/share/man/* /usr/share/doc/* || true; \