Skip to content

Commit 7f18e75

Browse files
committed
Update
1 parent 37bd7a6 commit 7f18e75

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/cron-checks.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }}
4444
STREAM_DEMO_APP_SECRET: ${{ secrets.STREAM_DEMO_APP_SECRET }}
4545
XCODE_VERSION: "26.1"
46-
IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" # For the Allure report
46+
IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})"
4747
steps:
4848
- uses: actions/checkout@v4.1.1
4949
- uses: ./.github/actions/bootstrap
@@ -61,7 +61,7 @@ jobs:
6161
- name: Launch Allure TestOps
6262
run: bundle exec fastlane allure_launch cron:true
6363
- name: Run UI Tests (Debug)
64-
run: bundle exec fastlane test_e2e_mock device:"${{ matrix.device }} (${{ matrix.ios }})"
64+
run: bundle exec fastlane test_e2e_mock device:"${{ env.IOS_SIMULATOR_DEVICE }}"
6565
timeout-minutes: 120
6666
- name: Allure TestOps Upload
6767
if: success() || failure()
@@ -108,6 +108,7 @@ jobs:
108108
runs-on: macos-15
109109
env:
110110
XCODE_VERSION: "26.1"
111+
IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})"
111112
steps:
112113
- uses: actions/checkout@v4.1.1
113114
- uses: ./.github/actions/bootstrap
@@ -121,7 +122,7 @@ jobs:
121122
version: ${{ matrix.ios }}
122123
device: ${{ matrix.device }}
123124
- name: Run LLC Tests (Debug)
124-
run: bundle exec fastlane test device:"${{ matrix.device }} (${{ matrix.ios }})" cron:true
125+
run: bundle exec fastlane test device:"${{ env.IOS_SIMULATOR_DEVICE }}" cron:true
125126
timeout-minutes: 100
126127
- name: Parse xcresult
127128
if: failure()

0 commit comments

Comments
 (0)