mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Build snowflake, meek, and finally OnionShare itself. Compress it, and store it as an artifact
This commit is contained in:
parent
c22303ce0f
commit
52fdbf3fae
51
.github/workflows/build-windows.yml
vendored
51
.github/workflows/build-windows.yml
vendored
@ -46,4 +46,53 @@ jobs:
|
|||||||
} else {
|
} else {
|
||||||
cd desktop
|
cd desktop
|
||||||
.\scripts\build-pt-obfs4proxy.ps1
|
.\scripts\build-pt-obfs4proxy.ps1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- name: Restore cache - snowflake
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: desktop\onionshare\resources\tor\snowflake-client.exe
|
||||||
|
key: ${{ runner.os }}-win64-snowflake-${{ hashFiles('desktop/scripts/build-pt-snowflake.ps1') }}
|
||||||
|
|
||||||
|
- name: Build snowflake
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
if ((Test-Path -Path 'project\desktop\onionshare\resources\tor\snowflake-client.exe') -eq $True) {
|
||||||
|
Write-Output "snowflake already built"
|
||||||
|
} else {
|
||||||
|
cd desktop
|
||||||
|
.\scripts\build-pt-snowflake.ps1
|
||||||
|
}
|
||||||
|
|
||||||
|
- name: Restore cache - meek
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: desktop\onionshare\resources\tor\meek-client.exe
|
||||||
|
key: ${{ runner.os }}-win64-meek-${{ hashFiles('desktop/scripts/build-pt-meek.ps1') }}
|
||||||
|
|
||||||
|
- name: Build meek
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
if ((Test-Path -Path 'project\desktop\onionshare\resources\tor\meek-client.exe') -eq $True) {
|
||||||
|
Write-Output "meek already built"
|
||||||
|
} else {
|
||||||
|
cd desktop
|
||||||
|
.\scripts\build-pt-meek.ps1
|
||||||
|
}
|
||||||
|
|
||||||
|
- name: Build OnionShare
|
||||||
|
run: |
|
||||||
|
cd desktop
|
||||||
|
C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts\poetry run python .\setup-freeze.py build
|
||||||
|
C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts\poetry run python .\scripts\build-windows.py cleanup-build
|
||||||
|
|
||||||
|
- name: Compress
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
mv desktop\build\exe.win-amd64-3.9\ ~\onionshare-win64
|
||||||
|
Compress-Archive -LiteralPath ~\onionshare-win64 -DestinationPath ~\onionshare-win64.zip
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: win64-build
|
||||||
|
path: ~\onionshare-win64.zip
|
||||||
|
Loading…
Reference in New Issue
Block a user