Skip to content

Commit 4a9a7a8

Browse files
committed
Merge remote-tracking branch 'opentok/develop' into develop
2 parents 4eb85d2 + c8710a3 commit 4a9a7a8

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/sample_test.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Test Sample apps
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, develop ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, develop ]
88

99
jobs:
1010
build:
@@ -17,9 +17,9 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v2
1919
- name: Setup Xcode version
20-
uses: maxim-lobanov/setup-xcode@v1.4.1
20+
uses: maxim-lobanov/setup-xcode@v1.6.0
2121
with:
22-
xcode-version: '16.2.0'
22+
xcode-version: 'latest-stable'
2323
- name: Pack Library
2424
run: |
2525
npm pack
@@ -31,9 +31,10 @@ jobs:
3131
path: samples
3232
- name: Set up JDK
3333
if: ${{ matrix.platform == 'android' }}
34-
uses: actions/setup-java@v1
34+
uses: actions/setup-java@v4.7.1
3535
with:
36-
java-version: 11
36+
java-version: 17
37+
distribution: zulu
3738
- name: NPM install ${{ matrix.project }}
3839
run: |
3940
cd samples/${{ matrix.project }}
@@ -48,7 +49,7 @@ jobs:
4849
pod update opentok-react-native
4950
pod install
5051
cat Podfile.lock
51-
xcodebuild clean build -quiet -workspace ${{ matrix.project }}.xcworkspace -scheme ${{ matrix.project }} -destination 'platform=iOS Simulator,name=iPhone 11,OS=15.0' -- CODE_SIGNING_ALLOWED=NO
52+
xcodebuild clean build -quiet -workspace ${{ matrix.project }}.xcworkspace -scheme ${{ matrix.project }} -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.2' -- CODE_SIGNING_ALLOWED=NO
5253
else
5354
./gradlew -Dorg.gradle.jvmargs=-Xmx4g app:assembleRelease
5455
fi

0 commit comments

Comments
 (0)