Update BN #1727
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: PR Build | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
BRN_Version: '0.64' | |
jobs: | |
build-android: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: Setup Node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Setup CMake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.26.3' | |
- name: Setup Ninja | |
run: brew install ninja | |
- name: NPM Install (Playground) | |
run: npm install | |
working-directory: ./Apps/Playground | |
- name: NPM Install (React Native ${{ env.BRN_Version }}) | |
run: npm run select ${{ env.BRN_Version }} | |
working-directory: ./Apps/Playground | |
- name: NPM Install (Binary Package) | |
run: npm install | |
working-directory: ./Package | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
check-latest: true | |
- name: Gulp (Android) | |
run: npx gulp buildAndroid | |
working-directory: ./Package | |
env: | |
JAVA_HOME: ${{ env.JAVA_HOME_11_X64 }} | |
build-iOS: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: Setup Node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: NPM Install (Playground) | |
run: npm install | |
working-directory: ./Apps/Playground | |
- name: NPM Install (React Native ${{ env.BRN_Version }}) | |
run: npm run select --reactNative ${{ env.BRN_Version }} | |
working-directory: ./Apps/Playground | |
- name: NPM Install (Binary Package) | |
run: npm install | |
working-directory: ./Package | |
- name: Gulp (iOS) | |
run: npx gulp buildIOS | |
working-directory: ./Package | |
test-publish-android-ios: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: Setup Node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Setup CMake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.26.3' | |
- name: Setup Ninja | |
run: brew install ninja | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
check-latest: true | |
- name: NPM Install (Playground) | |
run: npm install | |
working-directory: ./Apps/Playground | |
- name: NPM Install (React Native ${{ env.BRN_Version }}) | |
run: npm run select --reactNative ${{ env.BRN_Version }} | |
working-directory: ./Apps/Playground | |
- name: NPM Install (Binary Package) | |
run: npm install | |
working-directory: ./Package | |
- name: Gulp | |
run: npx gulp | |
working-directory: ./Package | |
env: | |
JAVA_HOME: ${{ env.JAVA_HOME_11_X64 }} | |
build-windows: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
platform: [x86, x64, ARM64] | |
config: [Debug, Release] | |
steps: | |
- name: Support longpaths | |
run: git config --system core.longpaths true | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
with: | |
submodules: 'true' | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Setup Node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Setup NuGet | |
uses: nuget/setup-nuget@v1 | |
with: | |
nuget-version: '5.x' | |
- name: NPM Install (Playground) | |
run: npm install | |
working-directory: ./Apps/Playground | |
- name: NPM Install (React Native ${{ env.BRN_Version }}) | |
run: npm run select ${{ env.BRN_Version }} | |
working-directory: ./Apps/Playground | |
- name: NPM Install (Binary Package) | |
run: npm install | |
working-directory: ./Package | |
- name: Gulp Setup Project ${{ matrix.platform }} (Windows) | |
run: npx gulp makeUWPProject${{ matrix.platform }} | |
working-directory: ./Package | |
- name: Gulp Build ${{ matrix.platform }} ${{ matrix.config }} (Windows) | |
run: npx gulp buildUWP${{ matrix.platform }}${{ matrix.config }} | |
working-directory: ./Package | |
- name: Gulp NuGet Restore Playground | |
run: npx gulp nugetRestoreUWPPlayground | |
working-directory: ./Package | |
- name: Gulp Build ${{ matrix.platform }} ${{ matrix.config }} Playground (Windows) | |
run: npx gulp buildUWPPlayground${{ matrix.platform }}${{ matrix.config }} | |
working-directory: ./Package | |
# Test packages | |
build-android-ios-065: | |
uses: ./.github/workflows/ios_android.yml | |
with: | |
react-native-version: '0.65' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-android-ios-069: | |
uses: ./.github/workflows/ios_android.yml | |
with: | |
react-native-version: '0.69' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-android-ios-070: | |
uses: ./.github/workflows/ios_android.yml | |
with: | |
react-native-version: '0.70' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-android-ios-071: | |
uses: ./.github/workflows/ios_android.yml | |
with: | |
react-native-version: '0.71' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-windows-065: | |
uses: ./.github/workflows/windows.yml | |
with: | |
react-native-version: '0.65' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-windows-069: | |
uses: ./.github/workflows/windows.yml | |
with: | |
react-native-version: '0.69' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-windows-070: | |
uses: ./.github/workflows/windows.yml | |
with: | |
react-native-version: '0.70' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-windows-071: | |
uses: ./.github/workflows/windows.yml | |
with: | |
react-native-version: '0.71' | |
release-version: 0.0.${GITHUB_SHA::8} | |
build-typescript: | |
uses: ./.github/workflows/typescript.yml | |
with: | |
release-version: 0.0.${GITHUB_SHA::8} |