Add nlohmann/json as submodule #11
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: Android CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: main | |
| paths-ignore: '**.md' | |
| pull_request: | |
| branches: main | |
| paths-ignore: '**.md' | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: 'recursive' | |
| fetch-depth: 0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew --warning-mode all assembleRelease | |
| - name: Upload CI module zip as artifact zip | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: TargetedFix-CI_#${{ github.run_number }} | |
| path: 'module/*' | |
| compression-level: 9 |