Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: deploy/hockey.sh

Issue 29720604: Issue 6405 - Remove CircleCI refs. (Closed)
Patch Set: Issue 6405 - Remove build scripts & CircleCI refs. Removed Cartfile reference Created March 14, 2018, 8:58 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « deploy/checkout-core.sh ('k') | e2e_tests.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: deploy/hockey.sh
diff --git a/deploy/hockey.sh b/deploy/hockey.sh
deleted file mode 100755
index fe3bb42ef20f5489e1d749b5f5692252f7a64466..0000000000000000000000000000000000000000
--- a/deploy/hockey.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-set -x
-
-IPA_FILE=$1
-DSYM_FILE=$2
-
-# HockeyApp UPLOAD token
-# master = Eyeo Release
-# release = Eyeo Devbuild
-# *) = Salsita Development
-case $CIRCLE_BRANCH in
-master) HOCKEY_TOKEN=c41de0ea5d2a45c6802653918aa48fe8;;
-release) HOCKEY_TOKEN=a8f36549a4184f098b891afb5a6e1758;;
-*) HOCKEY_TOKEN=043705a1045e41e09df456383bedc51e;;
-esac
-
-echo "Branch '${CIRCLE_BRANCH}', Hockey Upload Token ${HOCKEY_TOKEN}"
-
-CURL=curl
-API_ENDPOINT=https://rink.hockeyapp.net/api/2/apps/upload
-
-# Note on "strategy" parameter.
-# "add" is a default value but it's being set explicitly as a reminder of verifying
-# https://www.pivotaltracker.com/story/show/128064665
-# "replace" was there previously due to
-# https://www.pivotaltracker.com/story/show/127067897
-# which shouldn't be needed anymore
-STRATEGY=add
-
-$CURL $API_ENDPOINT \
--H "X-HockeyAppToken: ${HOCKEY_TOKEN}" \
--F ipa="@${IPA_FILE}" \
--F dsym="@${DSYM_FILE}" \
--F tags="${CIRCLE_BRANCH}" \
--F strategy="${STRATEGY}"
« no previous file with comments | « deploy/checkout-core.sh ('k') | e2e_tests.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld