mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
In 32-bit build, use 32-bit python
This commit is contained in:
parent
27dc8082ec
commit
1d9ce020e5
@ -132,27 +132,27 @@ jobs:
|
||||
msiexec.exe /i "~\Downloads\go1.18.windows-386.msi" /qn
|
||||
- run:
|
||||
name: Install poetry (32-bit)
|
||||
command: C:\Python39-32bit\python -m pip install poetry
|
||||
command: C:\Python39-32bit\Scripts\pip install poetry
|
||||
- run:
|
||||
name: Install poetry dependencies
|
||||
command: |
|
||||
cd ~\project\desktop
|
||||
poetry install
|
||||
C:\Python39-32bit\Scripts\poetry install
|
||||
- run:
|
||||
name: Get tor
|
||||
command: |
|
||||
cd ~\project\desktop
|
||||
poetry run python .\scripts\get-tor-windows.py
|
||||
C:\Python39-32bit\Scripts\poetry run python .\scripts\get-tor-windows.py
|
||||
- run:
|
||||
name: Build meek
|
||||
command: |
|
||||
cd ~\project\desktop
|
||||
python .\scripts\build-meek-client.py
|
||||
C:\Python39-32bit\python .\scripts\build-meek-client.py
|
||||
- run:
|
||||
name: Build
|
||||
command: |
|
||||
cd ~\project\desktop
|
||||
poetry run python .\package\build-windows.py --ci-build
|
||||
C:\Python39-32bit\Scripts\poetry run python .\package\build-windows.py --ci-build
|
||||
- run:
|
||||
name: Compress
|
||||
command: Compress-Archive -LiteralPath ~\project\desktop\build\exe.win32-3.9 -DestinationPath ~\onionshare-win32.zip
|
||||
|
@ -185,7 +185,7 @@ def main():
|
||||
print("> Building binaries")
|
||||
run(
|
||||
[
|
||||
shutil.which("python"),
|
||||
"python",
|
||||
"setup-freeze.py",
|
||||
"build",
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user