Kaspersky AV whitelisting (#10919)
* Add Kaspersky's FTP to AV Whitelisting release script * Uncommented lines commented for debugging
This commit is contained in:
parent
ee9bfac625
commit
ec90fc47bc
@ -327,7 +327,7 @@ publish-docs:
|
||||
publish-av-whitelist:
|
||||
stage: publish
|
||||
<<: *no_git
|
||||
# only: *releaseable_branches
|
||||
only: *releaseable_branches
|
||||
except:
|
||||
variables:
|
||||
- $SCHEDULE_TAG == "nightly"
|
||||
|
@ -1,11 +1,12 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
echo "__________Publish Windows binaries to Avast Whitelisting program__________"
|
||||
|
||||
target_filename="parity-${CI_COMMIT_TAG:-${CI_COMMIT_REF_NAME}}.exe"
|
||||
apt -y update
|
||||
apt -y install ftp
|
||||
|
||||
echo "__________Publish Windows binaries to Avast Whitelisting program__________"
|
||||
|
||||
ftp -pinv whitelisting.avast.com <<EOF
|
||||
quote USER ftp_parityio
|
||||
quote PASS $avast_ftp_password
|
||||
@ -14,3 +15,11 @@ put ./artifacts/x86_64-pc-windows-msvc/parity.exe $target_filename
|
||||
bye
|
||||
EOF
|
||||
|
||||
echo "__________Publish Windows binaries to Kaspersky Whitelisting program__________"
|
||||
|
||||
ftp -pinv whitelist1.kaspersky-labs.com <<EOF
|
||||
quote USER wl-ParityTech
|
||||
quote PASS $kaspersky_ftp_password
|
||||
put ./artifacts/x86_64-pc-windows-msvc/parity.exe $target_filename
|
||||
bye
|
||||
EOF
|
||||
|
Loading…
Reference in New Issue
Block a user