File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ prerequisites/build text
2121* .tar binary
2222* .gz binary
2323* .tgz binary
24+ * .enc binary
2425
2526# Prevent dev-ops files from making it into the release archives
2627.travis.yml export-ignore
2728.pullapprove.yml export-ignore
2829.gitattributes export-ignore
2930.gitignore export-ignore
3031developer-scripts export-ignore
31- codecov.yml export-ignore
32+ codecov.yml export-ignore
33+ * .enc export-ignore
Original file line number Diff line number Diff line change @@ -67,6 +67,16 @@ matrix:
6767 - g++-6
6868
6969before_install :
70+ - |
71+ set -o errexit
72+ if [[ "$TRAVIS_TAG" ]] && [[ "X$TRAVIS_OS_NAME" = "Xlinux" ]] && $TRAVIS_SECURE_ENV_VARS ; then
73+ openssl aes-256-cbc -K $encrypted_ef4535c39461_key -iv $encrypted_ef4535c39461_iv -in subkey-328B3A0E-secret.asc.enc -out ./subkey-328B3A0E-secret.asc -d
74+ gpg --allow-secret-key-import --import ./subkey-328B3A0E-secret.asc && rm subkey-328B3A0E-secret.asc
75+ fi
76+ set +o errexit
77+ - unset encrypted_ef4535c39461_key || true
78+ - unset encrypted_ef4535c39461_iv || true
79+ - rm subkey-328B3A0E-secret.asc{,.enc} || true
7080 - |
7181 set -o errexit
7282 if [[ $TRAVIS ]] && [[ "X$TRAVIS_OS_NAME" = "Xosx" ]]; then
You can’t perform that action at this time.
0 commit comments