Comment out desktop tests, and change the build windows workflow trigger

This commit is contained in:
Micah Lee 2022-09-30 16:01:03 -07:00
parent 61b6666264
commit 790fe8250c
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73
2 changed files with 26 additions and 25 deletions

View File

@ -1,10 +1,9 @@
name: Build Windows
run-name: Build win32 and win64 🚀
on:
workflow_run:
workflows: "Run Tests"
types:
- completed
push:
branches:
- github-actions
jobs:
win64:

View File

@ -28,24 +28,26 @@ jobs:
poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2
poetry run onionshare-cli --local-only --chat --auto-stop-timer 2
test-desktop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui
sudo apt-get install -y xvfb x11-utils libxkbcommon-x11-0 libxcb-randr0-dev libxcb-xtest0-dev libxcb-xinerama0-dev libxcb-shape0-dev libxcb-xkb-dev libxcb-render-util0 libxcb-icccm4 libxcb-keysyms1 libxcb-image0
pip install --upgrade pip poetry
- uses: actions/cache@v3
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }}
- run: cd desktop && poetry install
- run: |
cd desktop
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
# skip desktop tests during dev, because they're so slow
# test-desktop:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: '3.9'
# - name: Install dependencies
# run: |
# sudo apt-get update
# sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui
# sudo apt-get install -y xvfb x11-utils libxkbcommon-x11-0 libxcb-randr0-dev libxcb-xtest0-dev libxcb-xinerama0-dev libxcb-shape0-dev libxcb-xkb-dev libxcb-render-util0 libxcb-icccm4 libxcb-keysyms1 libxcb-image0
# pip install --upgrade pip poetry
# - uses: actions/cache@v3
# with:
# path: ~/.cache/pypoetry/virtualenvs
# key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }}
# - run: cd desktop && poetry install
# - run: |
# cd desktop
# QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py