Fix missing return statement in ecPointToCompressedBytes #10
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: Build Silent Payments APK | |
| on: | |
| push: | |
| branches: [ feature/silent-payments ] | |
| workflow_dispatch: # Manual trigger | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| clean: true | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v3 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Clean and build Silent Payments | |
| run: | | |
| rm -rf app/build | |
| rm -rf ~/.gradle | |
| ./gradlew --no-daemon --no-build-cache :app:assembleDebug --stacktrace | |
| - name: Upload Silent Payments APK | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ibis-wallet-silent-payments | |
| path: app/build/outputs/apk/debug/app-debug.apk | |
| retention-days: 14 | |
| if-no-files-found: error | |
| - name: Upload build reports | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-reports-silent-payments | |
| path: app/build/reports/ | |
| retention-days: 7 |