Update sentry sourcemaps upload (#5409)
parent
6c8ef69654
commit
fb3be79820
|
@ -55,6 +55,7 @@ module.exports = function (config) {
|
||||||
: undefined
|
: undefined
|
||||||
const UPDATES_ENABLED = !!UPDATES_CHANNEL
|
const UPDATES_ENABLED = !!UPDATES_CHANNEL
|
||||||
|
|
||||||
|
const USE_SENTRY = Boolean(process.env.SENTRY_AUTH_TOKEN)
|
||||||
const SENTRY_DIST = `${PLATFORM}.${VERSION}.${IS_TESTFLIGHT ? 'tf' : ''}${
|
const SENTRY_DIST = `${PLATFORM}.${VERSION}.${IS_TESTFLIGHT ? 'tf' : ''}${
|
||||||
IS_DEV ? 'dev' : ''
|
IS_DEV ? 'dev' : ''
|
||||||
}`
|
}`
|
||||||
|
@ -186,7 +187,15 @@ module.exports = function (config) {
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
'expo-localization',
|
'expo-localization',
|
||||||
Boolean(process.env.SENTRY_AUTH_TOKEN) && 'sentry-expo',
|
USE_SENTRY && [
|
||||||
|
'@sentry/react-native/expo',
|
||||||
|
{
|
||||||
|
organization: 'blueskyweb',
|
||||||
|
project: 'react-native',
|
||||||
|
release: VERSION,
|
||||||
|
dist: SENTRY_DIST,
|
||||||
|
},
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'expo-build-properties',
|
'expo-build-properties',
|
||||||
{
|
{
|
||||||
|
@ -263,7 +272,7 @@ module.exports = function (config) {
|
||||||
* @see https://docs.expo.dev/guides/using-sentry/#app-configuration
|
* @see https://docs.expo.dev/guides/using-sentry/#app-configuration
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
file: 'sentry-expo/upload-sourcemaps',
|
file: './postHooks/uploadSentrySourcemapsPostHook',
|
||||||
config: {
|
config: {
|
||||||
organization: 'blueskyweb',
|
organization: 'blueskyweb',
|
||||||
project: 'react-native',
|
project: 'react-native',
|
||||||
|
|
|
@ -13,3 +13,24 @@ index 7e0b4cd..177454c 100644
|
||||||
}
|
}
|
||||||
//# sourceMappingURL=ignorerequirecyclelogs.js.map
|
//# sourceMappingURL=ignorerequirecyclelogs.js.map
|
||||||
\ No newline at end of file
|
\ No newline at end of file
|
||||||
|
diff --git a/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js b/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js
|
||||||
|
index 0f244f2..ae7dfb3 100755
|
||||||
|
--- a/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js
|
||||||
|
+++ b/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js
|
||||||
|
@@ -174,6 +174,7 @@ if (!outputDir) {
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
+const otherArgs = process.argv.slice(3);
|
||||||
|
const files = getAssetPathsSync(outputDir);
|
||||||
|
const groupedAssets = groupAssets(files);
|
||||||
|
|
||||||
|
@@ -195,7 +196,7 @@ for (const [assetGroupName, assets] of Object.entries(groupedAssets)) {
|
||||||
|
|
||||||
|
const isHermes = assets.find(asset => asset.endsWith('.hbc'));
|
||||||
|
const windowsCallback = process.platform === "win32" ? 'node ' : '';
|
||||||
|
- execSync(`${windowsCallback}${sentryCliBin} sourcemaps upload ${isHermes ? '--debug-id-reference' : ''} ${assets.join(' ')}`, {
|
||||||
|
+ execSync(`${windowsCallback}${sentryCliBin} sourcemaps upload ${isHermes ? '--debug-id-reference' : ''} ${assets.join(' ')} ${otherArgs.join(' ')}`, {
|
||||||
|
env: {
|
||||||
|
...process.env,
|
||||||
|
[SENTRY_PROJECT]: sentryProject,
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
const exec = require('child_process').execSync
|
||||||
|
|
||||||
|
const SENTRY_AUTH_TOKEN = process.env.SENTRY_AUTH_TOKEN
|
||||||
|
|
||||||
|
module.exports = ({config}) => {
|
||||||
|
if (!SENTRY_AUTH_TOKEN) {
|
||||||
|
console.log(
|
||||||
|
'SENTRY_AUTH_TOKEN environment variable must be set to upload sourcemaps. Skipping.',
|
||||||
|
)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const org = config.organization
|
||||||
|
const project = config.project
|
||||||
|
const release = config.release
|
||||||
|
const dist = config.dist
|
||||||
|
|
||||||
|
if (!org || !project || !release || !dist) {
|
||||||
|
console.log(
|
||||||
|
'"organization", "project", "release", and "dist" must be set in the hook config to upload sourcemaps. Skipping.',
|
||||||
|
)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
console.log('Uploading sourcemaps to Sentry...')
|
||||||
|
exec(
|
||||||
|
`node node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps dist --url https://sentry.io/ -o ${org} -p ${project} -r ${release} -d ${dist}`,
|
||||||
|
)
|
||||||
|
console.log('Sourcemaps uploaded to Sentry.')
|
||||||
|
} catch (e) {
|
||||||
|
console.error('Error uploading sourcemaps to Sentry:', e)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue