mirror of
https://github.com/onionshare/onionshare.git
synced 2025-07-22 14:20:56 -04:00
Try installing some dependencies with chocolatey
This commit is contained in:
parent
631aff7cce
commit
724e48053c
1 changed files with 16 additions and 4 deletions
|
@ -9,7 +9,7 @@ workflows:
|
||||||
jobs:
|
jobs:
|
||||||
- test-cli
|
- test-cli
|
||||||
- test-gui
|
- test-gui
|
||||||
- build-win32:
|
- build-win64:
|
||||||
requires:
|
requires:
|
||||||
- test-cli
|
- test-cli
|
||||||
# - test-gui
|
# - test-gui
|
||||||
|
@ -67,12 +67,24 @@ jobs:
|
||||||
cd ~/repo/desktop
|
cd ~/repo/desktop
|
||||||
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
|
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
|
||||||
|
|
||||||
build-win32:
|
build-win64:
|
||||||
executor:
|
executor:
|
||||||
name: win/default
|
name: win/default
|
||||||
shell: powershell.exe
|
shell: powershell.exe
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: systeminfo
|
- run:
|
||||||
- run: Write-Host 'Hello, Windows'
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue