Skip to content

Commit

Permalink
add ios
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricGuillemet committed Jun 17, 2024
1 parent c066ea4 commit bb75074
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
platform: [ios, android]
react-native-version: ['0.71', '0.73']
steps:
- name: Checkout Repo
uses: actions/[email protected]
with:
submodules: 'recursive'
- name: Setup CMake
uses: jwlawson/[email protected]
with:
Expand All @@ -33,7 +32,7 @@ jobs:
working-directory: ./Apps/BRNPlayground

- name: Build Windows Bundle
run: npm run build:android
run: npm run build:${{ matrix.platform }}
working-directory: ./Apps/BRNPlayground

- name: NPM Install (Binary Package)
Expand All @@ -45,8 +44,8 @@ jobs:
distribution: 'temurin'
java-version: '17'
check-latest: true
- name: Gulp (Android)
run: npx gulp buildAndroidRNTA
- name: Gulp ${{ matrix.platform }}
run: npx gulp build${{ matrix.platform }}RNTA
working-directory: ./Package
env:
JAVA_HOME: ${{ env.JAVA_HOME_11_X64 }}
Expand Down
2 changes: 2 additions & 0 deletions Package/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,10 @@ exports.validateAssemblediOSAndroid = validateAssemblediOSAndroid;

exports.buildIOS = buildIOS;
exports.buildIOSRNTA = buildIOSRNTA;
exports.buildiosRNTA = buildIOSRNTA; // lower case for CI matrix
exports.buildAndroid = buildAndroid;
exports.buildAndroidRNTA = buildAndroidRNTA;
exports.buildandroidRNTA = buildAndroidRNTA; // lower case for CI matrix
exports.createIOSUniversalLibs = createIOSUniversalLibs;
exports.copyFiles = copyFiles;

Expand Down

0 comments on commit bb75074

Please sign in to comment.