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
|
msiexec.exe /i "~\Downloads\go1.18.windows-386.msi" /qn
|
||||||
- run:
|
- run:
|
||||||
name: Install poetry (32-bit)
|
name: Install poetry (32-bit)
|
||||||
command: C:\Python39-32bit\python -m pip install poetry
|
command: C:\Python39-32bit\Scripts\pip install poetry
|
||||||
- run:
|
- run:
|
||||||
name: Install poetry dependencies
|
name: Install poetry dependencies
|
||||||
command: |
|
command: |
|
||||||
cd ~\project\desktop
|
cd ~\project\desktop
|
||||||
poetry install
|
C:\Python39-32bit\Scripts\poetry install
|
||||||
- run:
|
- run:
|
||||||
name: Get tor
|
name: Get tor
|
||||||
command: |
|
command: |
|
||||||
cd ~\project\desktop
|
cd ~\project\desktop
|
||||||
poetry run python .\scripts\get-tor-windows.py
|
C:\Python39-32bit\Scripts\poetry run python .\scripts\get-tor-windows.py
|
||||||
- run:
|
- run:
|
||||||
name: Build meek
|
name: Build meek
|
||||||
command: |
|
command: |
|
||||||
cd ~\project\desktop
|
cd ~\project\desktop
|
||||||
python .\scripts\build-meek-client.py
|
C:\Python39-32bit\python .\scripts\build-meek-client.py
|
||||||
- run:
|
- run:
|
||||||
name: Build
|
name: Build
|
||||||
command: |
|
command: |
|
||||||
cd ~\project\desktop
|
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:
|
- run:
|
||||||
name: Compress
|
name: Compress
|
||||||
command: Compress-Archive -LiteralPath ~\project\desktop\build\exe.win32-3.9 -DestinationPath ~\onionshare-win32.zip
|
command: Compress-Archive -LiteralPath ~\project\desktop\build\exe.win32-3.9 -DestinationPath ~\onionshare-win32.zip
|
||||||
|
@ -185,7 +185,7 @@ def main():
|
|||||||
print("> Building binaries")
|
print("> Building binaries")
|
||||||
run(
|
run(
|
||||||
[
|
[
|
||||||
shutil.which("python"),
|
"python",
|
||||||
"setup-freeze.py",
|
"setup-freeze.py",
|
||||||
"build",
|
"build",
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user