aboutsummaryrefslogtreecommitdiffstats
path: root/development/sentry-publish.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-04-04 03:36:46 +0800
committerkumavis <aaron@kumavis.me>2018-04-04 03:36:46 +0800
commit92dd2b32187c6e4514823612af9259061bc0e4cb (patch)
treefbdc5a5c79238d186302d01fe016dca4b5f856cd /development/sentry-publish.js
parent6029ebf0edc4ce366aaaa98bc09455c94e759c1d (diff)
downloadtangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.tar
tangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.tar.gz
tangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.tar.bz2
tangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.tar.lz
tangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.tar.xz
tangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.tar.zst
tangerine-wallet-browser-92dd2b32187c6e4514823612af9259061bc0e4cb.zip
ci - job-publish - publish source+sourcemaps to sentry if new release
Diffstat (limited to 'development/sentry-publish.js')
-rw-r--r--development/sentry-publish.js55
1 files changed, 55 insertions, 0 deletions
diff --git a/development/sentry-publish.js b/development/sentry-publish.js
new file mode 100644
index 000000000..ab3acabbd
--- /dev/null
+++ b/development/sentry-publish.js
@@ -0,0 +1,55 @@
+#!/usr/bin/env node
+const pify = require('pify')
+const exec = pify(require('child_process').exec, { multiArgs: true })
+const VERSION = require('../dist/chrome/manifest.json').version
+
+start().catch(console.error)
+
+async function start(){
+ const authWorked = await checkIfAuthWorks()
+ if (!authWorked) {
+ console.log(`Sentry auth failed...`)
+ }
+ // check if version exists or not
+ const versionAlreadyExists = await checkIfVersionExists()
+ // abort if versions exists
+ if (versionAlreadyExists) {
+ console.log(`Version "${VERSION}" already exists on Sentry, aborting sourcemap upload.`)
+ return
+ }
+
+ // create sentry release
+ console.log(`creating Sentry release for "${VERSION}"...`)
+ await exec(`sentry-cli releases --org 'metamask' --project 'metamask' new ${VERSION}`)
+ console.log(`removing any existing files from Sentry release "${VERSION}"...`)
+ await exec(`sentry-cli releases --org 'metamask' --project 'metamask' files ${VERSION} delete --all`)
+ // upload sentry source and sourcemaps
+ console.log(`uploading source files Sentry release "${VERSION}"...`)
+ await exec(`for FILEPATH in ./dist/chrome/*.js; do [ -e $FILEPATH ] || continue; export FILE=\`basename $FILEPATH\` && echo uploading $FILE && sentry-cli releases --org 'metamask' --project 'metamask' files ${VERSION} upload $FILEPATH metamask/$FILE; done;`)
+ console.log(`uploading sourcemaps Sentry release "${VERSION}"...`)
+ await exec(`sentry-cli releases --org 'metamask' --project 'metamask' files ${VERSION} upload-sourcemaps ./dist/sourcemaps/ --url-prefix 'sourcemaps'`)
+ console.log('all done!')
+}
+
+async function checkIfAuthWorks() {
+ const itWorked = await doesNotFail(async () => {
+ await exec(`sentry-cli releases --org 'metamask' --project 'metamask' list`)
+ })
+ return itWorked
+}
+
+async function checkIfVersionExists() {
+ const versionAlreadyExists = await doesNotFail(async () => {
+ await exec(`sentry-cli releases --org 'metamask' --project 'metamask' info ${VERSION}`)
+ })
+ return versionAlreadyExists
+}
+
+async function doesNotFail(asyncFn) {
+ try {
+ await asyncFn()
+ return true
+ } catch (err) {
+ return false
+ }
+}