Skip to content

Commit 0bffd95

Browse files
committed
Fixes
1 parent 3ab0d17 commit 0bffd95

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/e2e-v2.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ concurrency:
1616
env:
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

2222
jobs:
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

dev-packages/e2e-tests/cli.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
`;

0 commit comments

Comments
 (0)