Skip to content

Commit f778753

Browse files
authored
add adapter info for android
1 parent c4a5537 commit f778753

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/workflow-mobile.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,42 +159,55 @@ jobs:
159159
- os: "iOS"
160160
device: "iPhone 13"
161161
os_version: "15"
162+
adapter: ""
162163
- os: "iOS"
163164
device: "iPhone 14"
164165
os_version: "16"
166+
adapter: ""
165167
- os: "iOS"
166168
device: "iPhone 15"
167169
os_version: "17"
170+
adapter: ""
168171
- os: "iOS"
169172
device: "iPhone 14"
170173
os_version: "18"
174+
adapter: ""
171175
- os: "Android"
172176
device: "Google Pixel 6"
173177
os_version: "12.0"
178+
adapter: "Mali-G78"
174179
- os: "Android"
175180
device: "Google Pixel 7"
176181
os_version: "13.0"
182+
adapter: "Mali-G710"
177183
- os: "Android"
178184
device: "Google Pixel 8"
179185
os_version: "14.0"
186+
adapter: "Mali-G715"
180187
- os: "Android"
181188
device: "Google Pixel 9"
182189
os_version: "15.0"
190+
adapter: "Mali-G715"
183191
- os: "Android"
184192
device: "Samsung Galaxy S23"
185193
os_version: "13.0"
194+
adapter: "Adreno (TM) 740"
186195
- os: "Android"
187196
device: "Samsung Galaxy S24"
188197
os_version: "14.0"
198+
adapter: "Samsung Xclipse 940"
189199
- os: "Android"
190200
device: "Samsung Galaxy S25"
191201
os_version: "15.0"
202+
adapter: "Adreno (TM) 830"
192203
- os: "Android"
193204
device: "OnePlus 11R"
194205
os_version: "13.0"
206+
adapter: "Adreno (TM) 730"
195207
- os: "Android"
196208
device: "OnePlus 12R"
197209
os_version: "14.0"
210+
adapter: "Adreno (TM) 740"
198211
steps:
199212
- uses: actions/checkout@v4
200213
with:
@@ -244,7 +257,7 @@ jobs:
244257

245258
- name: Send to Pixel Eagle
246259
run: |
247-
run=`curl https://pixel-eagle.com/${{ inputs.pixeleagle_project }}/runs -H 'Content-Type: application/json' -d '{"device":"${{ matrix.device }}", "os":"${{ matrix.os }}-${{ matrix.os_version }}", "gitref": "${{ inputs.gitref }}", "branch": "${{ inputs.branch }}"}' --oauth2-bearer ${{ secrets.PIXELEAGLE }} | jq '.id'`
260+
run=`curl https://pixel-eagle.com/${{ inputs.pixeleagle_project }}/runs -H 'Content-Type: application/json' -d '{"device":"${{ matrix.device }}", "os":"${{ matrix.os }}-${{ matrix.os_version }}", "adapter": "${{ matrix.adapter }}", "gitref": "${{ inputs.gitref }}", "branch": "${{ inputs.branch }}"}' --oauth2-bearer ${{ secrets.PIXELEAGLE }} | jq '.id'`
248261
249262
SAVEIFS=$IFS
250263

0 commit comments

Comments
 (0)