From 3279bcb3726666cbbac300620de02aa1364a968d Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:21:27 -0700 Subject: [PATCH] workflows: refactor build steps --- .github/workflows/e2e.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 312d5e2e..b8ef8b8f 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -32,16 +32,19 @@ jobs: - name: Run shellcheck run: | shellcheck tests/*.sh - - name: Run tests + - name: Test steamrt install + run: | + bash tests/test_install.sh + rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d" + - name: Test steamrt update run: | bash tests/test_update.sh rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d" - + - name: Test winetricks + run: | + bash tests/test_winetricks.sh + rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d" + - name: Test configuration file + run: | uv python install 3.11 uv run --python 3.11 -- bash tests/test_config.sh - rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d" - - bash tests/test_install.sh - rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d" - - bash tests/test_winetricks.sh