Skip to content

Commit

Permalink
workflows: add flatpak workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Jan 14, 2025
1 parent 7eb46d6 commit 027c1cb
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,6 @@ jobs:
- name: Setup venv
run: |
uv venv --python 3.10
- name: Test Flatpak
run: |
source .venv/bin/activate
cd packaging/flatpak
git config --global protocol.file.allow always
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak-builder --force-clean --user --install-deps-from=flathub --repo=umu-repo --install umu-launcher org.openwinecomponents.umu.umu-launcher.yml
flatpak run --command=sh --devel org.openwinecomponents.umu.umu-launcher
GAMEID=umu-0 UMU_LOG=1 "$HOME/.local/bin/umu-run" ""
rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d"
- name: Test steamrt install
run: |
source .venv/bin/activate
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/flatpak.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: flatpak

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get install meson scdoc python3-hatchling python3-build python3-installer python3-filelock shellcheck bubblewrap cargo flatpak-builder
python3 -m pip install --upgrade pip
pip install uv
- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Make user install
run: |
./configure.sh --user-install
make install
- name: Run shellcheck
run: |
shellcheck tests/*.sh
- name: Setup venv
run: |
uv venv --python 3.10
- name: Test Flatpak
run: |
source .venv/bin/activate
cd packaging/flatpak
git config --global protocol.file.allow always
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak-builder --force-clean --user --install-deps-from=flathub --repo=umu-repo --install umu-launcher org.openwinecomponents.umu.umu-launcher.yml
flatpak run --command=sh --devel org.openwinecomponents.umu.umu-launcher
GAMEID=umu-0 UMU_LOG=1 "$HOME/.local/bin/umu-run" wineboot -u

0 comments on commit 027c1cb

Please sign in to comment.