2022-11-27 20:10:21 +00:00
|
|
|
name: PR Test Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-10-03 14:56:10 +00:00
|
|
|
branches: [main]
|
2022-11-27 20:10:21 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-03-01 03:12:36 +00:00
|
|
|
PR_test_build:
|
2023-01-05 13:54:48 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-12-28 20:20:37 +00:00
|
|
|
env:
|
|
|
|
STORE_PASS: test@cake_wallet
|
|
|
|
KEY_PASS: test@cake_wallet
|
2022-11-27 20:10:21 +00:00
|
|
|
|
|
|
|
steps:
|
2023-07-21 14:21:37 +00:00
|
|
|
- name: Free Up GitHub Actions Ubuntu Runner Disk Space
|
|
|
|
run: |
|
|
|
|
sudo rm -rf /usr/share/dotnet
|
|
|
|
sudo rm -rf /opt/ghc
|
|
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
|
|
|
2022-11-27 20:10:21 +00:00
|
|
|
- uses: actions/checkout@v2
|
2022-11-29 13:19:51 +00:00
|
|
|
- uses: actions/setup-java@v1
|
|
|
|
with:
|
2023-10-03 14:56:10 +00:00
|
|
|
java-version: "8.x"
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Flutter action
|
|
|
|
uses: subosito/flutter-action@v1
|
|
|
|
with:
|
2023-10-03 14:56:10 +00:00
|
|
|
flutter-version: "3.10.x"
|
2022-11-29 13:19:51 +00:00
|
|
|
channel: stable
|
|
|
|
|
|
|
|
- name: Install package dependencies
|
|
|
|
run: sudo apt-get install -y curl unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake clang
|
|
|
|
|
|
|
|
- name: Execute Build and Setup Commands
|
|
|
|
run: |
|
|
|
|
sudo mkdir -p /opt/android
|
|
|
|
sudo chown $USER /opt/android
|
|
|
|
cd /opt/android
|
|
|
|
git clone https://github.com/cake-tech/cake_wallet.git --branch $GITHUB_HEAD_REF
|
|
|
|
cd cake_wallet/scripts/android/
|
|
|
|
./install_ndk.sh
|
2023-03-01 05:01:17 +00:00
|
|
|
source ./app_env.sh cakewallet
|
2022-11-29 13:19:51 +00:00
|
|
|
./app_config.sh
|
2023-01-05 16:02:59 +00:00
|
|
|
|
|
|
|
- name: Cache Externals
|
|
|
|
id: cache-externals
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
/opt/android/cake_wallet/cw_haven/android/.cxx
|
|
|
|
/opt/android/cake_wallet/cw_haven/ios/External
|
|
|
|
/opt/android/cake_wallet/cw_monero/android/.cxx
|
|
|
|
/opt/android/cake_wallet/cw_monero/ios/External
|
|
|
|
/opt/android/cake_wallet/cw_shared_external/ios/External
|
2023-08-24 13:54:05 +00:00
|
|
|
key: ${{ hashFiles('**/build_monero.sh', '**/build_haven.sh', '**/monero_api.cpp') }}
|
2023-01-05 16:02:59 +00:00
|
|
|
|
|
|
|
- if: ${{ steps.cache-externals.outputs.cache-hit != 'true' }}
|
|
|
|
name: Generate Externals
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet/scripts/android/
|
|
|
|
source ./app_env.sh cakewallet
|
2022-11-29 13:19:51 +00:00
|
|
|
./build_all.sh
|
|
|
|
./copy_monero_deps.sh
|
|
|
|
|
|
|
|
- name: Install Flutter dependencies
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
flutter pub get
|
|
|
|
|
|
|
|
- name: Generate KeyStore
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet/android/app
|
2022-12-28 20:20:37 +00:00
|
|
|
keytool -genkey -v -keystore key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias testKey -noprompt -dname "CN=CakeWallet, OU=CakeWallet, O=CakeWallet, L=Florida, S=America, C=USA" -storepass $STORE_PASS -keypass $KEY_PASS
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Generate key properties
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
2022-12-28 20:20:37 +00:00
|
|
|
flutter packages pub run tool/generate_android_key_properties.dart keyAlias=testKey storeFile=key.jks storePassword=$STORE_PASS keyPassword=$KEY_PASS
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Generate localization
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
flutter packages pub run tool/generate_localization.dart
|
|
|
|
|
|
|
|
- name: Build generated code
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
cd cw_core && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
|
|
cd cw_monero && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
|
|
cd cw_bitcoin && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
|
|
cd cw_haven && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
2023-08-04 17:01:49 +00:00
|
|
|
cd cw_ethereum && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
2022-11-29 13:19:51 +00:00
|
|
|
flutter packages pub run build_runner build --delete-conflicting-outputs
|
|
|
|
|
|
|
|
- name: Add secrets
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
touch lib/.secrets.g.dart
|
2023-08-08 01:02:09 +00:00
|
|
|
touch cw_ethereum/lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
echo "const salt = '${{ secrets.SALT }}';" > lib/.secrets.g.dart
|
|
|
|
echo "const keychainSalt = '${{ secrets.KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const key = '${{ secrets.KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const walletSalt = '${{ secrets.WALLET_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const shortKey = '${{ secrets.SHORT_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const backupSalt = '${{ secrets.BACKUP_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const backupKeychainSalt = '${{ secrets.BACKUP_KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const changeNowApiKey = '${{ secrets.CHANGE_NOW_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-04-14 04:39:08 +00:00
|
|
|
echo "const changeNowApiKeyDesktop = '${{ secrets.CHANGE_NOW_API_KEY_DESKTOP }}';" >> lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
echo "const wyreSecretKey = '${{ secrets.WYRE_SECRET_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const wyreApiKey = '${{ secrets.WYRE_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const wyreAccountId = '${{ secrets.WYRE_ACCOUNT_ID }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const moonPayApiKey = '${{ secrets.MOON_PAY_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const moonPaySecretKey = '${{ secrets.MOON_PAY_SECRET_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const sideShiftAffiliateId = '${{ secrets.SIDE_SHIFT_AFFILIATE_ID }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const simpleSwapApiKey = '${{ secrets.SIMPLE_SWAP_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-04-14 04:39:08 +00:00
|
|
|
echo "const simpleSwapApiKeyDesktop = '${{ secrets.SIMPLE_SWAP_API_KEY_DESKTOP }}';" >> lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
echo "const onramperApiKey = '${{ secrets.ONRAMPER_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const anypayToken = '${{ secrets.ANY_PAY_TOKEN }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const ioniaClientId = '${{ secrets.IONIA_CLIENT_ID }}';" >> lib/.secrets.g.dart
|
2023-01-26 18:20:01 +00:00
|
|
|
echo "const twitterBearerToken = '${{ secrets.TWITTER_BEARER_TOKEN }}';" >> lib/.secrets.g.dart
|
2023-02-06 20:20:46 +00:00
|
|
|
echo "const trocadorApiKey = '${{ secrets.TROCADOR_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const trocadorExchangeMarkup = '${{ secrets.TROCADOR_EXCHANGE_MARKUP }}';" >> lib/.secrets.g.dart
|
2023-03-24 15:26:42 +00:00
|
|
|
echo "const anonPayReferralCode = '${{ secrets.ANON_PAY_REFERRAL_CODE }}';" >> lib/.secrets.g.dart
|
2023-03-31 18:22:51 +00:00
|
|
|
echo "const fiatApiKey = '${{ secrets.FIAT_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-03-31 18:34:39 +00:00
|
|
|
echo "const payfuraApiKey = '${{ secrets.PAYFURA_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-08-04 17:01:49 +00:00
|
|
|
echo "const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';" >> cw_ethereum/lib/.secrets.g.dart
|
2023-08-15 00:47:25 +00:00
|
|
|
echo "const chatwootWebsiteToken = '${{ secrets.CHATWOOT_WEBSITE_TOKEN }}';" >> lib/.secrets.g.dart
|
2023-09-28 16:20:08 +00:00
|
|
|
echo "const exolixApiKey = '${{ secrets.EXOLIX_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-09-14 19:14:49 +00:00
|
|
|
echo "const robinhoodApplicationId = '${{ secrets.ROBINHOOD_APPLICATION_ID }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const robinhoodCIdApiSecret = '${{ secrets.ROBINHOOD_CID_CLIENT_SECRET }}';" >> lib/.secrets.g.dart
|
2023-10-03 14:56:10 +00:00
|
|
|
echo "const walletConnectProjectId = '${{ secrets.WALLET_CONNECT_PROJECT_ID }}';" >> lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
|
2022-11-29 13:49:24 +00:00
|
|
|
- name: Rename app
|
2023-03-01 14:57:55 +00:00
|
|
|
run: echo -e "id=com.cakewallet.test\nname=$GITHUB_HEAD_REF" > /opt/android/cake_wallet/android/app.properties
|
2022-11-29 13:49:24 +00:00
|
|
|
|
2022-11-29 13:19:51 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
flutter build apk --release
|
2022-11-27 20:10:21 +00:00
|
|
|
|
2023-10-03 14:56:10 +00:00
|
|
|
# - name: Push to App Center
|
|
|
|
# run: |
|
|
|
|
# echo 'Installing App Center CLI tools'
|
|
|
|
# npm install -g appcenter-cli
|
|
|
|
# echo "Publishing test to App Center"
|
|
|
|
# appcenter distribute release \
|
|
|
|
# --group "Testers" \
|
|
|
|
# --file "/opt/android/cake_wallet/build/app/outputs/apk/release/app-release.apk" \
|
|
|
|
# --release-notes ${GITHUB_HEAD_REF} \
|
|
|
|
# --app Cake-Labs/Cake-Wallet \
|
|
|
|
# --token ${{ secrets.APP_CENTER_TOKEN }} \
|
|
|
|
# --quiet
|
2022-11-27 20:10:21 +00:00
|
|
|
|
2022-11-29 13:49:24 +00:00
|
|
|
- name: Rename apk file
|
2022-11-29 12:16:04 +00:00
|
|
|
run: |
|
2022-11-29 13:19:51 +00:00
|
|
|
cd /opt/android/cake_wallet/build/app/outputs/apk/release
|
2022-11-29 12:23:58 +00:00
|
|
|
mkdir test-apk
|
2022-12-19 17:41:00 +00:00
|
|
|
cp app-release.apk test-apk/$GITHUB_HEAD_REF.apk
|
2022-11-29 12:14:31 +00:00
|
|
|
|
2022-11-29 12:46:03 +00:00
|
|
|
- name: Upload Artifact
|
2022-11-29 13:01:20 +00:00
|
|
|
uses: kittaakos/upload-artifact-as-is@v0
|
2022-11-29 12:46:03 +00:00
|
|
|
with:
|
2022-11-29 13:19:51 +00:00
|
|
|
path: /opt/android/cake_wallet/build/app/outputs/apk/release/test-apk/
|
2022-12-19 17:41:00 +00:00
|
|
|
|
|
|
|
- name: Send Test APK
|
2022-12-28 20:20:37 +00:00
|
|
|
continue-on-error: true
|
2023-08-31 17:09:10 +00:00
|
|
|
uses: adrey/slack-file-upload-action@1.0.5
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.SLACK_APP_TOKEN }}
|
|
|
|
path: /opt/android/cake_wallet/build/app/outputs/apk/release/app-release.apk
|
|
|
|
channel: ${{ secrets.SLACK_APK_CHANNEL }}
|
2023-10-03 14:56:10 +00:00
|
|
|
title: "${{github.head_ref}}.apk"
|
2023-08-31 17:09:10 +00:00
|
|
|
filename: ${{github.head_ref}}.apk
|
|
|
|
initial_comment: ${{ github.event.head_commit.message }}
|