mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-28 09:23:34 +00:00
Deploy binaries to RPCS3/rpcs3-binaries-win
This commit is contained in:
parent
dde4a9c6e7
commit
7b5dcd9d6a
19
appveyor.yml
19
appveyor.yml
@ -109,9 +109,11 @@ after_build:
|
|||||||
7z a -m0=LZMA2 -mx9 $env:BUILD .\bin\*
|
7z a -m0=LZMA2 -mx9 $env:BUILD .\bin\*
|
||||||
7z a -m0=LZMA2 -mx9 openssl_win64.7z C:\OpenSSL-Win64\bin\libeay32.dll `
|
7z a -m0=LZMA2 -mx9 openssl_win64.7z C:\OpenSSL-Win64\bin\libeay32.dll `
|
||||||
C:\OpenSSL-Win64\bin\ssleay32.dll
|
C:\OpenSSL-Win64\bin\ssleay32.dll
|
||||||
|
$env:FILESIZEMB = (Get-Item $env:BUILD).length/1MB
|
||||||
|
|
||||||
- ps: | # generate sha256 hashes
|
- ps: | # generate sha256 hashes
|
||||||
(get-filehash $env:BUILD -algorithm SHA256).Hash | out-file ("{0}.sha256" -f $env:BUILD) -encoding ascii
|
(get-filehash $env:BUILD -algorithm SHA256).Hash | out-file ("{0}.sha256" -f $env:BUILD) -encoding ascii
|
||||||
|
$env:SHA256SUM = (get-filehash $env:BUILD -algorithm SHA256).Hash
|
||||||
(get-filehash openssl_win64.7z -algorithm SHA256).Hash | out-file "openssl_win64.7z.sha256" -encoding ascii
|
(get-filehash openssl_win64.7z -algorithm SHA256).Hash | out-file "openssl_win64.7z.sha256" -encoding ascii
|
||||||
|
|
||||||
test: off
|
test: off
|
||||||
@ -125,6 +127,23 @@ artifacts:
|
|||||||
name: openssl
|
name: openssl
|
||||||
- path: openssl_win64.7z.sha256
|
- path: openssl_win64.7z.sha256
|
||||||
name: openssl sha256 hash
|
name: openssl sha256 hash
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
provider: GitHub
|
||||||
|
# Description is a semi-colon seperated list for easy parsing
|
||||||
|
description: "$(SHA256SUM);$(FILESIZEMB)MB"
|
||||||
|
tag: build-$(APPVEYOR_REPO_COMMIT)
|
||||||
|
release: $(AVVER)
|
||||||
|
artifact: $(BUILD)
|
||||||
|
repository: RPCS3/rpcs3-binaries-win
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
force_update: true
|
||||||
|
auth_token:
|
||||||
|
secure: gTZqN6J9QNQTv9vu2qtExWk1x4o9dSfyTH/y86Yhe3qu+2w6Mly1MaDFMaXgrN1e
|
||||||
|
on:
|
||||||
|
branch: master
|
||||||
|
appveyor_repo_name: RPCS3/rpcs3
|
||||||
|
|
||||||
on_success:
|
on_success:
|
||||||
- ps: | # update appveyor build version, done last to prevent webhook breakage
|
- ps: | # update appveyor build version, done last to prevent webhook breakage
|
||||||
|
Loading…
Reference in New Issue
Block a user