Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,18 @@ jobs:
- run:
name: Install Ninja
command: sudo apt-get update && sudo apt-get install -y ninja-build
- run:
name: Set Java Version
command: |
sudo update-alternatives --set java /usr/lib/jvm/java-17-openjdk-amd64/bin/java
- run: chown -R $USER:$USER android
- run: cd android && ./gradlew
- run:
name: Build Android
command: cd android && ./gradlew assembleDebug --no-daemon
environment:
GRADLE_OPTS: "-Xmx3g"


ios:
macos:
xcode: "15.3.0"
Expand All @@ -70,7 +80,7 @@ jobs:
command: npm run install-radar-rebuild-dirty
- run: cd ios && pod update RadarSDK && pod install
- run: xcodebuild -workspace ios/Example.xcworkspace -scheme Example -sdk iphonesimulator


workflows:
version: 2
Expand Down