Skip to content

Commit

Permalink
added debug to fix-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
saikrishna321 committed May 6, 2024
1 parent add70f0 commit ed92519
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
buildWithSubmodule:
name: Build with Submodule
name: Run Unit Test
runs-on: macos-latest
strategy:
matrix:
Expand Down Expand Up @@ -52,6 +52,7 @@ jobs:
npm ci
npm run bundle
AndroidIntegrationTest:
name: Run Android Integration Test
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -83,7 +84,7 @@ jobs:
profile: Nexus 6
script: npm run integration-android
IOSIntegrationTest:
name: Build with Submodule
name: Run iOS Integration Test
runs-on: macos-latest
strategy:
matrix:
Expand Down
2 changes: 2 additions & 0 deletions src/device-managers/IOSDeviceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ export default class IOSDeviceManager implements IDeviceManager {
//log.debug(`Build Simulators: ${JSON.stringify(buildSimulators)}`);
const deviceTypes = await list.devicetypes;
for await (const device of buildSimulators) {
console.log('DeviceTypes', deviceTypes);
console.log('Device', device);
const productModel = IOSDeviceManager.getProductModel(deviceTypes, device);
const wdaLocalPort = await getFreePort();
const mjpegServerPort = await getFreePort();
Expand Down

0 comments on commit ed92519

Please sign in to comment.