From 3ca7d2d62665d381825d90a1e36590f5052aa339 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 14 Nov 2023 12:38:48 +1000 Subject: [PATCH] CI/Flatpak: Disable build/repo linting We're currently failing validation with a `finish-args-unnecessary-xdg-config-access` error. This is **not** caused by anything we're doing, it's an issue with the upstream Qt SDK: https://invent.kde.org/packaging/flatpak-kde-runtime/-/blob/3bac997f76646f1abda38d376e217a5635167144/org.kde.Sdk.json.in#L84 So, for now, just disable it. I don't have time at the moment to chase bugs upstream, if it's still broken next week, I'll do so then. --- .github/workflows/linux_build_flatpak.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux_build_flatpak.yml b/.github/workflows/linux_build_flatpak.yml index 7c523fd686c94..8472f00165653 100644 --- a/.github/workflows/linux_build_flatpak.yml +++ b/.github/workflows/linux_build_flatpak.yml @@ -107,13 +107,13 @@ jobs: run: | ostree commit --repo=repo --canonical-permissions --branch=screenshots/x86_64 flatpak_app/screenshots - - name: Validate build directory - run: | - flatpak run --command=flatpak-builder-lint org.flatpak.Builder builddir flatpak_app - - - name: Validate repo - run: | - flatpak run --command=flatpak-builder-lint org.flatpak.Builder repo repo + #- name: Validate build directory + # run: | + # flatpak run --command=flatpak-builder-lint org.flatpak.Builder builddir flatpak_app + # + #- name: Validate repo + # run: | + # flatpak run --command=flatpak-builder-lint org.flatpak.Builder repo repo - name: Push to Flathub beta if: inputs.publish == true && inputs.branch == 'beta'