ci: add more e2e tests #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
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 | |
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: Run tests | |
run: | | |
bash tests/test_update.sh | |
rm -rf "$HOME/.local/share/umu" "$HOME/Games/umu" "$HOME/.local/share/Steam/compatibilitytools.d" | |
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 |