From c6cd829e7ba2a5c899bd7e4455e9070db640b92a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Thu, 24 Jun 2021 19:31:31 +0200 Subject: [PATCH 1/2] Add flatpak workflow Builds on push/pull with Flathub patches --- .github/workflows/flatpak.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/flatpak.yml diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml new file mode 100644 index 00000000..2c79106b --- /dev/null +++ b/.github/workflows/flatpak.yml @@ -0,0 +1,25 @@ +on: + push: + branches: + - master + pull_request: + branches: + - master +name: "Flatpak" +jobs: + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:gnome-40 + options: --privileged + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 + name: "Build" + with: + bundle: com.github.rafostar.Clapper.flatpak + manifest-path: pkgs/flatpak/com.github.rafostar.Clapper.json + cache-key: flatpak-builder-${{ github.sha }} From 562587846a3abdc53b29be4a68117e2f82b298e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Thu, 24 Jun 2021 19:34:26 +0200 Subject: [PATCH 2/2] Add flatpak testing workflow Builds nightly with latest GStreamer from git (no patches applied) --- .github/workflows/flatpak-testing.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/flatpak-testing.yml diff --git a/.github/workflows/flatpak-testing.yml b/.github/workflows/flatpak-testing.yml new file mode 100644 index 00000000..40f69d65 --- /dev/null +++ b/.github/workflows/flatpak-testing.yml @@ -0,0 +1,21 @@ +on: + schedule: + - cron: "0 0 * * *" +name: "Flatpak Testing" +jobs: + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:gnome-40 + options: --privileged + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 + name: "Build" + with: + bundle: com.github.rafostar.Clapper.flatpak + manifest-path: pkgs/flatpak/com.github.rafostar.Clapper-testing.json + cache-key: flatpak-builder-${{ github.sha }}