2022-03-30 00:02:03 -04:00
|
|
|
version: 2.1
|
|
|
|
|
|
|
|
orbs:
|
|
|
|
win: circleci/windows@4.0.0
|
|
|
|
|
2018-11-25 16:20:05 -05:00
|
|
|
workflows:
|
|
|
|
version: 2
|
2022-03-30 00:05:23 -04:00
|
|
|
test_and_build:
|
2018-11-25 16:20:05 -05:00
|
|
|
jobs:
|
2020-10-14 23:42:20 -04:00
|
|
|
- test-cli
|
|
|
|
- test-gui
|
2022-03-30 00:59:39 -04:00
|
|
|
- build-win64:
|
2022-03-30 00:04:39 -04:00
|
|
|
requires:
|
|
|
|
- test-cli
|
2022-03-30 00:11:46 -04:00
|
|
|
# - test-gui
|
2018-11-25 16:20:05 -05:00
|
|
|
|
2018-10-17 01:51:49 -04:00
|
|
|
jobs:
|
2020-10-14 23:42:20 -04:00
|
|
|
test-cli:
|
2018-10-17 01:51:49 -04:00
|
|
|
docker:
|
2022-03-28 23:22:14 -04:00
|
|
|
- image: cimg/python:3.9
|
2019-01-16 00:54:39 -05:00
|
|
|
|
2018-10-17 01:51:49 -04:00
|
|
|
working_directory: ~/repo
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
|
2020-03-22 18:32:25 -04:00
|
|
|
- run:
|
2020-10-14 23:44:21 -04:00
|
|
|
name: Install dependencies
|
|
|
|
command: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install tor obfs4proxy
|
|
|
|
pip install poetry
|
|
|
|
cd ~/repo/cli
|
|
|
|
poetry install
|
2020-03-22 18:32:25 -04:00
|
|
|
|
2018-10-17 01:51:49 -04:00
|
|
|
- run:
|
2020-10-14 23:42:20 -04:00
|
|
|
name: Run tests
|
2018-10-17 01:51:49 -04:00
|
|
|
command: |
|
2020-10-14 23:42:20 -04:00
|
|
|
cd ~/repo/cli
|
|
|
|
poetry run pytest -v ./tests
|
2021-11-11 19:43:09 -05:00
|
|
|
poetry run onionshare-cli --local-only ./tests --auto-stop-timer 2
|
|
|
|
poetry run onionshare-cli --local-only --receive --auto-stop-timer 2
|
|
|
|
poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2
|
|
|
|
poetry run onionshare-cli --local-only --chat --auto-stop-timer 2
|
2022-03-30 00:02:03 -04:00
|
|
|
|
2020-10-14 23:42:20 -04:00
|
|
|
test-gui:
|
|
|
|
docker:
|
2022-03-28 23:22:14 -04:00
|
|
|
- image: cimg/python:3.9
|
2020-10-14 23:42:20 -04:00
|
|
|
|
|
|
|
working_directory: ~/repo
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-10-17 01:51:49 -04:00
|
|
|
|
|
|
|
- run:
|
2020-10-14 23:44:21 -04:00
|
|
|
name: Install dependencies
|
|
|
|
command: |
|
|
|
|
sudo apt-get update
|
2020-11-01 14:50:11 -05:00
|
|
|
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
|
2020-10-14 23:44:21 -04:00
|
|
|
cd ~/repo/desktop
|
2021-12-19 20:33:11 -05:00
|
|
|
poetry install
|
2018-10-17 01:58:05 -04:00
|
|
|
|
2018-10-17 01:59:13 -04:00
|
|
|
- run:
|
2020-10-14 23:42:20 -04:00
|
|
|
name: Run tests
|
2018-10-17 01:51:49 -04:00
|
|
|
command: |
|
2020-10-14 23:42:20 -04:00
|
|
|
cd ~/repo/desktop
|
2022-03-28 23:13:14 -04:00
|
|
|
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
|
2022-03-30 00:02:03 -04:00
|
|
|
|
2022-03-30 00:59:39 -04:00
|
|
|
build-win64:
|
2022-03-30 00:02:03 -04:00
|
|
|
executor:
|
|
|
|
name: win/default
|
|
|
|
shell: powershell.exe
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
2022-03-30 00:59:39 -04:00
|
|
|
- run:
|
|
|
|
name: Install chocolately dependencies
|
|
|
|
command: |
|
|
|
|
choco install python --version=3.9.12
|
|
|
|
choco install 7zip
|
|
|
|
choco install go
|
|
|
|
- run:
|
|
|
|
name: Install poetry
|
|
|
|
command: (Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
|
|
|
|
- run:
|
|
|
|
name: Install poetry dependencies
|
|
|
|
command: |
|
|
|
|
cd ~\project
|
|
|
|
poetry install
|