From 36b9bec8b590cb43db2f8564d6780f30f91c9360 Mon Sep 17 00:00:00 2001 From: Tabitha Cromarty Date: Tue, 21 Apr 2026 15:48:43 +0100 Subject: [PATCH] Use CI preset for building Ubuntu to avoid building with system ICU (#305) ICU version changes a lot and the runtime version has to match the version built against, so we should go back to bundling a version we build ourselves for now. Eventually we might consider making packages for various versions of Ubuntu/Debian, but this is the simplest fix --- .github/workflows/build-project.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-project.yaml b/.github/workflows/build-project.yaml index afdffec..0f6de9f 100644 --- a/.github/workflows/build-project.yaml +++ b/.github/workflows/build-project.yaml @@ -329,6 +329,7 @@ jobs: - name: Build Plugin 🧱 uses: ./.github/actions/build-plugin with: + CI: 1 target: x86_64 config: ${{ needs.check-event.outputs.config }} acceleration: ${{ matrix.acceleration }} @@ -336,6 +337,7 @@ jobs: - name: Package Plugin 📀 uses: ./.github/actions/package-plugin with: + CI: 1 package: ${{ fromJSON(needs.check-event.outputs.package) }} target: x86_64 config: ${{ needs.check-event.outputs.config }}