Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Updated the gpg keys to the new value #2784

Merged
merged 1 commit into from Mar 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
48 changes: 20 additions & 28 deletions .travis.yml
@@ -1,27 +1,21 @@
language: java
jdk:
- openjdk8

- openjdk8
branches:
only:
- master
- gerrit-integration
- "/^v[0-9]+\\.[0-9]+\\.[0-9]+.*$/"

- master
- gerrit-integration
- "/^v[0-9]+\\.[0-9]+\\.[0-9]+.*$/"
cache:
directories:
- "$TRAVIS_BUILD_DIR/UI/node_modules"

- "$TRAVIS_BUILD_DIR/UI/node_modules"
install: true

before_script:
- sudo chown -R $USER:$GROUP $TRAVIS_BUILD_DIR

- sudo chown -R $USER:$GROUP $TRAVIS_BUILD_DIR
script:
- if [ "$TRAVIS_PULL_REQUEST" != "false" ] || [ "$TRAVIS_BRANCH" = "master" ]; then mvn clean install -q -U; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then cp ./travis-utilities/deploy-snapshot.sh . && ./deploy-snapshot.sh; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [[ "$TRAVIS_BRANCH" =~ ^v[0-9]+\.[0-9]+\.[0-9]+.*$ ]]; then cp ./travis-utilities/release.sh . && ./release.sh; fi

- if [ "$TRAVIS_PULL_REQUEST" != "false" ] || [ "$TRAVIS_BRANCH" = "master" ]; then mvn clean install -q -U; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then cp ./travis-utilities/deploy-snapshot.sh . && ./deploy-snapshot.sh; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [[ "$TRAVIS_BRANCH" =~ ^v[0-9]+\.[0-9]+\.[0-9]+.*$ ]]; then cp ./travis-utilities/release.sh . && ./release.sh; fi
notifications:
webhooks:
urls: https://webhooks.gitter.im/e/48597b0f75dd571734bc
Expand All @@ -30,20 +24,18 @@ notifications:
on_start: always
email:
recipients:
- tapabrata.pal@capitalone.com
- brock.beatty@capitalone.com
- nireesh.thiruveedula@capitalone.com
- Stephen.Hughes@capitalone.com
- Prashant.Parekh@capitalone.com
- Matthew.Beasley@capitalone.com
- Subodh.Battina@capitalone.com
- Ragha.Vema@capitalone.com
- tapabrata.pal@capitalone.com
- brock.beatty@capitalone.com
- nireesh.thiruveedula@capitalone.com
- Stephen.Hughes@capitalone.com
- Prashant.Parekh@capitalone.com
- Matthew.Beasley@capitalone.com
- Subodh.Battina@capitalone.com
- Ragha.Vema@capitalone.com
on_success: always
on_failure: always

after_failure:
- sudo free -m -t
- sudo dmesg

- sudo free -m -t
- sudo dmesg
after_success:
- codecov
- codecov
Binary file modified travis-utilities/keys.gpg.enc
Binary file not shown.
2 changes: 1 addition & 1 deletion travis-utilities/release.sh
Expand Up @@ -2,7 +2,7 @@

cp travis-utilities/.travis.settings.xml $HOME/.m2/settings.xml

openssl aes-256-cbc -K $encrypted_229149f15c3f_key -iv $encrypted_229149f15c3f_iv -in travis-utilities/keys.gpg.enc -out keys.gpg -d
openssl aes-256-cbc -K $encrypted_230c5046d1fb_key -iv $encrypted_230c5046d1fb_iv -in travis-utilities/keys.gpg.enc -out keys.gpg -d

gpg --fast-import keys.gpg

Expand Down