Skip to content

Commit 2f3d228

Browse files
committed
Test
1 parent 619d21b commit 2f3d228

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/integration-test-android.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,29 +106,29 @@ jobs:
106106
SESSION_ID="${{ steps.start_session.outputs.session_id }}"
107107
108108
echo "=== Method 1: activate_app ==="
109-
curl -sS -w "\nHTTP:%{http_code}" \
109+
curl -sSL -w "\nHTTP:%{http_code}" \
110110
-u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" \
111111
-X POST "https://ondemand.eu-central-1.saucelabs.com/wd/hub/session/$SESSION_ID/appium/device/activate_app" \
112112
-H "Content-Type: application/json" \
113113
-d '{"appId": "io.sentry.unreal.sample"}'
114114
115115
echo ""
116116
echo "=== Method 2: mobile:shell ==="
117-
curl -sS -w "\nHTTP:%{http_code}" \
117+
curl -sSL -w "\nHTTP:%{http_code}" \
118118
-u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" \
119119
-X POST "https://ondemand.eu-central-1.saucelabs.com/wd/hub/session/$SESSION_ID/execute/sync" \
120120
-H "Content-Type: application/json" \
121121
-d '{"script": "mobile: shell", "args": [{"command": "am start -S -n io.sentry.unreal.sample/com.epicgames.unreal.GameActivity"}]}'
122122
123123
echo ""
124124
echo "=== Method 3: startActivity ==="
125-
curl -sS -w "\nHTTP:%{http_code}" \
125+
curl -sSL -w "\nHTTP:%{http_code}" \
126126
-u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" \
127127
-X POST "https://ondemand.eu-central-1.saucelabs.com/wd/hub/session/$SESSION_ID/appium/device/start_activity" \
128128
-H "Content-Type: application/json" \
129129
-d '{"appPackage": "io.sentry.unreal.sample", "appActivity": "com.epicgames.unreal.GameActivity"}'
130130
131-
- name: First launch (crash capture)
131+
- name: First launch (crash)
132132
run: |
133133
SESSION_ID="${{ steps.start_session.outputs.session_id }}"
134134
@@ -157,7 +157,7 @@ jobs:
157157
-d '{"type": "logcat"}' \
158158
-o first_run_logs.json
159159
160-
- name: Second launch (crash message)
160+
- name: Second launch (message)
161161
run: |
162162
SESSION_ID="${{ steps.start_session.outputs.session_id }}"
163163
@@ -169,7 +169,7 @@ jobs:
169169
"args": [{
170170
"appPackage": "io.sentry.unreal.sample",
171171
"appActivity": "com.epicgames.unreal.GameActivity",
172-
"optionalIntentArguments": "-e cmdline '\''-crash-message'\''"
172+
"optionalIntentArguments": "-e cmdline '\''-message-capture'\''"
173173
}]
174174
}'
175175

0 commit comments

Comments
 (0)