File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ concurrency:
1616env :
1717 SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
1818 MAESTRO_VERSION : ' 2.1.0'
19- IOS_DEVICE : ' iPhone 16 '
20- IOS_VERSION : ' 18.6 '
19+ IOS_DEVICE : ' iPhone 17 '
20+ IOS_VERSION : ' >= 18.0 '
2121
2222jobs :
2323 ready-to-merge-gate :
@@ -333,7 +333,7 @@ jobs:
333333 include :
334334 - platform : ios
335335 rn-version : ' 0.83.0'
336- runs-on : ["ghcr.io/cirruslabs/ macos-tahoe-xcode:26.2.0", "runner_group_id:12"]
336+ runs-on : macos-26
337337 - platform : android
338338 runs-on : ["ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04", "runner_group_id:12"]
339339
Original file line number Diff line number Diff line change @@ -298,10 +298,10 @@ if (actions.includes('test')) {
298298 // Always redact sensitive data, even if the test fails
299299 const redactScript = `
300300 if [[ "$(uname)" == "Darwin" ]]; then
301- find ./maestro-logs -type f -exec sh -c 'file -b --mime-encoding "{}" | grep -q text && sed -i "" "s/${ sentryAuthToken } /[REDACTED]/g" "{}" || echo "Skipping binary file: {}"' \\;
301+ find ./maestro-logs -type f -exec sed -i '' "s/${ sentryAuthToken } /[REDACTED]/g" {} +
302302 echo 'Redacted sensitive data from logs on MacOS'
303303 else
304- find ./maestro-logs -type f -exec sh -c 'file -b --mime-encoding "{}" | grep -q text && sed -i "s/${ sentryAuthToken } /[REDACTED]/g" "{}" || echo "Skipping binary file: {}"' \\;
304+ find ./maestro-logs -type f -exec sed -i "s/${ sentryAuthToken } /[REDACTED]/g" {} +
305305 echo 'Redacted sensitive data from logs on Ubuntu'
306306 fi
307307 ` ;
You can’t perform that action at this time.
0 commit comments