Building xmruw for supported targets #98
Workflow file for this run
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 xmruw | |
run-name: Building xmruw for supported targets | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
android: | |
strategy: | |
matrix: | |
coin: [monero, wownero] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential pkg-config autoconf libtool ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf unzip python-is-python3 jq | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Patch sources | |
run: | | |
git config --global --add safe.directory '*' | |
git config --global user.email "ci@mrcyjanek.net" | |
git config --global user.name "CI mrcyjanek.net" | |
./apply_patches.sh ${{ matrix.coin }} | |
- name: ${{ matrix.coin }}/aarch64-linux-android | |
run: ./build_single.sh ${{ matrix.coin }} aarch64-linux-android -j$(nproc) | |
- name: clone xmruw | |
run: | | |
git clone https://github.com/mrcyjanek/unnamed_monero_wallet | |
cd unnamed_monero_wallet | |
cp -a .fvm* .. | |
- uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: build xmruw (${{ matrix.coin }}) | |
run: | | |
cd unnamed_monero_wallet | |
if [[ "${{ matrix.coin }}" == "monero" ]]; then ./codegen.sh -DCOIN_MONERO -DLIBSTEALTH_DISABLED; fi | |
if [[ "${{ matrix.coin }}" == "wownero" ]]; then ./codegen.sh -DCOIN_WOWNERO -DLIBSTEALTH_DISABLED; fi | |
flutter pub get | |
make version | |
./build_changelog.sh | |
cp ../release/${{ matrix.coin }}/aarch64-linux-android_libwallet2_api_c.so.xz android/app/src/main/jniLibs/arm64-v8a/lib${{ matrix.coin }}_libwallet2_api_c.so.xz | |
unxz -f android/app/src/main/jniLibs/arm64-v8a/*.xz | |
flutter build apk --debug --flavor clean_${{ matrix.coin }} | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.coin }} xmruw apk | |
path: unnamed_monero_wallet/build/app/outputs/flutter-apk/*.apk | |
- name: Find Comment | |
uses: peter-evans/find-comment@v3 | |
continue-on-error: true | |
id: fc | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: 'github-actions[bot]' | |
body-includes: download xmruw | |
- name: Update comment | |
if: steps.fc.outcome == 'success' | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
comment-id: ${{ steps.fc.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
[download xmruw #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) | |
edit-mode: replace | |
- name: Create comment | |
if: steps.fc.outcome == 'failure' | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
[download xmruw #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) (this link will update whenever you push) |