build library #858
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: build library | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
pull_request: | |
schedule: | |
- cron: '25 6 * * *' | |
jobs: | |
build-android: | |
name: Build Android library | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup NPM tools | |
run: npm install -g pod-install && npm install -g react-native && npm install -g typescript | |
- name: Build native Android libraries | |
run: bash scripts/build-library.sh android | |
build-ios: | |
name: Build iOS library | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup NPM tools | |
run: npm install -g pod-install && npm install -g react-native && npm install -g typescript | |
- name: Build native iOS libraries | |
run: bash scripts/build-library.sh ios | |
build-tsc: | |
name: Compile typescript | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup NPM tools | |
run: npm install -g pod-install && npm install -g react-native && npm install -g typescript | |
- name: Compile sources | |
run: bash scripts/build-library.sh tsc |