Add build guide and helper scripts #15
This file contains hidden or 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 iOS build scripts | |
'on': | |
pull_request: | |
paths: | |
- 'scripts/**' | |
- 'BUILDING.md' | |
push: | |
branches: | |
- master | |
paths: | |
- 'scripts/**' | |
- 'BUILDING.md' | |
jobs: | |
build-ios: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup workspace | |
run: ./scripts/setup-workspace.sh -q -DskipTests | |
- name: Build iOS port | |
run: | | |
source tools/env.sh | |
echo "JAVA_HOME=$JAVA_HOME" | |
java -version | |
./scripts/build-ios-port.sh -q -DskipTests |