From 6503abe1ce4732943acd96ffc1b05b1e051b63b0 Mon Sep 17 00:00:00 2001 From: Les Vogel Date: Thu, 15 Jun 2017 17:43:39 -0700 Subject: [PATCH] One more credentials fix (#714) --- .circleci/circle.yml | 2 ++ circle.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.circleci/circle.yml b/.circleci/circle.yml index 4d1bfd6efbb..e397f27704d 100644 --- a/.circleci/circle.yml +++ b/.circleci/circle.yml @@ -9,6 +9,8 @@ dependencies: && sudo apt-get update && sudo apt-get install -t trusty-backports shellcheck - sudo apt-get install expect + - openssl aes-256-cbc -d -in "${HOME}/${CIRCLE_PROJECT_REPONAME}/service-account.json.enc" -k "${key}" -iv "${iv}" -out "${HOME}/google-cloud-service-key.json" + - export GOOGLE_APPLICATION_CREDENTIALS="${HOME}/google-cloud-service-key.json" test: override: - bash ./travis.sh && diff --git a/circle.yml b/circle.yml index 4d1bfd6efbb..e397f27704d 100644 --- a/circle.yml +++ b/circle.yml @@ -9,6 +9,8 @@ dependencies: && sudo apt-get update && sudo apt-get install -t trusty-backports shellcheck - sudo apt-get install expect + - openssl aes-256-cbc -d -in "${HOME}/${CIRCLE_PROJECT_REPONAME}/service-account.json.enc" -k "${key}" -iv "${iv}" -out "${HOME}/google-cloud-service-key.json" + - export GOOGLE_APPLICATION_CREDENTIALS="${HOME}/google-cloud-service-key.json" test: override: - bash ./travis.sh &&