Fix build issue in sample test #234
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Sample apps | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
project: [BasicVideoChat, Signaling] | |
platform: [ios, android] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '14.3.1' | |
- name: Pack Library | |
run: | | |
npm pack | |
find . -name "opentok-react-native-*.tgz" | while read -r file; do mv $file new.tgz; done | |
- name: Checkout samples | |
uses: actions/checkout@v2 | |
with: | |
repository: opentok/opentok-react-native-samples | |
path: samples | |
- name: Set up JDK | |
if: ${{ matrix.platform == 'android' }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: NPM install ${{ matrix.project }} | |
run: | | |
cd samples/${{ matrix.project }} | |
npm install --legacy-peer-deps | |
npm install ../../new.tgz | |
cat package.json | |
- name: Build ${{ matrix.project }} ${{ matrix.platform }} | |
run: | | |
cd samples/${{ matrix.project }}/${{ matrix.platform }} | |
if test -f Podfile | |
then | |
rm Podfile.lock # Ignore lock versions, in case there are version diffs | |
pod update opentok-react-native | |
pod install | |
cat Podfile.lock | |
xcodebuild clean build -quiet -workspace ${{ matrix.project }}.xcworkspace -scheme ${{ matrix.project }} -destination 'platform=iOS Simulator,name=iPhone 11,OS=15.0' | |
else | |
./gradlew -Dorg.gradle.jvmargs=-Xmx4g app:assembleRelease | |
fi | |