From 4d24970e04f374c58c7f45914f650dea8e5f511c Mon Sep 17 00:00:00 2001 From: ducoterra Date: Tue, 26 Nov 2024 19:50:45 -0500 Subject: [PATCH] fix build issue with cache causing pacman problems --- .gitea/workflows/build.yaml | 1 + README.md | 4 ++++ infrastructure/graduated/fedora/Containerfile | 15 ++++++++++----- infrastructure/graduated/fedora/arch-build.sh | 7 ++++--- infrastructure/graduated/fedora/arch-push.sh | 6 ------ infrastructure/graduated/fedora/fedora-kinoite.md | 12 +----------- 6 files changed, 20 insertions(+), 25 deletions(-) delete mode 100755 infrastructure/graduated/fedora/arch-push.sh diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 94c34e8..23a73a0 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -22,3 +22,4 @@ jobs: file: ${{ gitea.workspace }}/infrastructure/graduated/fedora/Containerfile push: true tags: "gitea.reeseapps.com/services/arch-toolbox:latest,gitea.reeseapps.com/services/arch-toolbox:${{gitea.sha}}" + no-cache: true \ No newline at end of file diff --git a/README.md b/README.md index efe0e1f..b0aecb4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Homelab +Reese's Arch Toolbox Status: + +![Arch Toolbox Status](https://gitea.reeseapps.com/services/homelab/actions/workflows/build.yaml/badge.svg?branch=main) + A project to store homelab stuff. ## Table of Contents diff --git a/infrastructure/graduated/fedora/Containerfile b/infrastructure/graduated/fedora/Containerfile index ce41253..0fede25 100644 --- a/infrastructure/graduated/fedora/Containerfile +++ b/infrastructure/graduated/fedora/Containerfile @@ -1,5 +1,14 @@ FROM quay.io/toolbx/arch-toolbox:latest +# Pacman Setup +# Enable multilib +RUN tee -a /etc/pacman.conf <