From e6a27e8143fe71a0d00522b0601f3088e44fe6fc Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Wed, 12 Nov 2025 14:22:00 +0100 Subject: [PATCH] Limit build matrix and update LibreOffice version Temporarily restricts the build workflow to only use Dockerfile.fat and updates the LibreOffice version in Dockerfile.fat from 25.8.2 to 25.2.6 for aarch64. This may be for troubleshooting or compatibility purposes. --- .github/workflows/build.yml | 3 ++- Dockerfile.fat | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b49e6dbe3..fa97b61e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -273,7 +273,8 @@ jobs: strategy: fail-fast: false matrix: - docker-rev: ["Dockerfile", "Dockerfile.ultra-lite", "Dockerfile.fat"] + # docker-rev: ["Dockerfile", "Dockerfile.ultra-lite", "Dockerfile.fat"] # temp disable + docker-rev: ["Dockerfile.fat"] steps: - name: Harden Runner uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 diff --git a/Dockerfile.fat b/Dockerfile.fat index 94ffd5cf6..6b997ecf1 100644 --- a/Dockerfile.fat +++ b/Dockerfile.fat @@ -24,7 +24,7 @@ RUN ./gradlew clean build -x spotlessApply -x spotlessCheck -x test -x sonarqube # Main stage FROM alpine:3.22.2@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 -ADD https://download.documentfoundation.org/libreoffice/stable/25.8.2/deb/aarch64/LibreOffice_25.8.2_Linux_aarch64_deb.tar.gz /tmp/lo.tar.gz +ADD https://download.documentfoundation.org/libreoffice/stable/25.2.6/deb/aarch64/LibreOffice_25.2.6_Linux_aarch64_deb.tar.gz /tmp/lo.tar.gz RUN mkdir -p /opt/libreoffice && \ tar -xzf /tmp/lo.tar.gz -C /opt/libreoffice --strip-components=1 && \ rm -f /tmp/lo.tar.gz && \