Cake Wallet Windows #2
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: Cake Wallet Windows | |
on: | |
push: | |
branches: [ci-test] | |
defaults: | |
run: | |
shell: powershell | |
jobs: | |
PR_test_build_windows: | |
runs-on: windows-amd64-cake | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add secrets | |
run: | | |
touch lib/.secrets.g.dart | |
touch cw_evm/lib/.secrets.g.dart | |
touch cw_solana/lib/.secrets.g.dart | |
touch cw_core/lib/.secrets.g.dart | |
touch cw_nano/lib/.secrets.g.dart | |
touch cw_tron/lib/.secrets.g.dart | |
if [[ "x${{ secrets.SALT }}" == "x" ]]; | |
then | |
echo "const salt = '954f787f12622067f7e548d9450c3832';" > lib/.secrets.g.dart | |
else | |
echo "const salt = '${{ secrets.SALT }}';" > lib/.secrets.g.dart | |
fi | |
if [[ "x${{ secrets.KEY_CHAIN_SALT }}" == "x" ]]; | |
then | |
echo "const keychainSalt = '2d2beba777dbf7dff7013b7a';" >> lib/.secrets.g.dart | |
else | |
echo "const keychainSalt = '${{ secrets.KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart | |
fi | |
if [[ "x${{ secrets.KEY }}" == "x" ]]; | |
then | |
echo "const key = '638e98820ec10a2945e968435c9397a3';" >> lib/.secrets.g.dart | |
else | |
echo "const key = '${{ secrets.KEY }}';" >> lib/.secrets.g.dart | |
fi | |
if [[ "x${{ secrets.WALLET_SALT }}" == "x" ]]; | |
then | |
echo "const walletSalt = '8f7f1b70';" >> lib/.secrets.g.dart | |
else | |
echo "const walletSalt = '${{ secrets.WALLET_SALT }}';" >> lib/.secrets.g.dart | |
fi | |
if [[ "x${{ secrets.SHORT_KEY }}" == "x" ]]; | |
then | |
echo "const shortKey = '653f270c2c152bc7ec864afe';" >> lib/.secrets.g.dart | |
else | |
echo "const shortKey = '${{ secrets.SHORT_KEY }}';" >> lib/.secrets.g.dart | |
fi | |
if [[ "x${{ secrets.BACKUP_SALT }}" == "x" ]]; | |
then | |
echo "const backupSalt = 'bf630d24ff0b6f60';" >> lib/.secrets.g.dart | |
else | |
echo "const backupSalt = '${{ secrets.BACKUP_SALT }}';" >> lib/.secrets.g.dart | |
fi | |
if [[ "x${{ secrets.BACKUP_KEY_CHAIN_SALT }}" == "x" ]]; | |
then | |
echo "const backupKeychainSalt = 'bf630d24ff0b6f60';" >> lib/.secrets.g.dart | |
else | |
echo "const backupKeychainSalt = '${{ secrets.BACKUP_KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart | |
fi | |
echo "const changeNowApiKey = '${{ secrets.CHANGE_NOW_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const changeNowApiKeyDesktop = '${{ secrets.CHANGE_NOW_API_KEY_DESKTOP }}';" >> lib/.secrets.g.dart | |
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 | |
echo "const simpleSwapApiKeyDesktop = '${{ secrets.SIMPLE_SWAP_API_KEY_DESKTOP }}';" >> lib/.secrets.g.dart | |
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 | |
echo "const twitterBearerToken = '${{ secrets.TWITTER_BEARER_TOKEN }}';" >> lib/.secrets.g.dart | |
echo "const trocadorApiKey = '${{ secrets.TROCADOR_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const trocadorExchangeMarkup = '${{ secrets.TROCADOR_EXCHANGE_MARKUP }}';" >> lib/.secrets.g.dart | |
echo "const anonPayReferralCode = '${{ secrets.ANON_PAY_REFERRAL_CODE }}';" >> lib/.secrets.g.dart | |
echo "const fiatApiKey = '${{ secrets.FIAT_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const chainStackApiKey = '${{ secrets.CHAIN_STACK_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const polygonScanApiKey = '${{ secrets.POLYGON_SCAN_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart | |
echo "const moralisApiKey = '${{ secrets.MORALIS_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart | |
echo "const nowNodesApiKey = '${{ secrets.EVM_NOWNODES_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart | |
echo "const chatwootWebsiteToken = '${{ secrets.CHATWOOT_WEBSITE_TOKEN }}';" >> lib/.secrets.g.dart | |
echo "const exolixApiKey = '${{ secrets.EXOLIX_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const robinhoodApplicationId = '${{ secrets.ROBINHOOD_APPLICATION_ID }}';" >> lib/.secrets.g.dart | |
echo "const exchangeHelperApiKey = '${{ secrets.ROBINHOOD_CID_CLIENT_SECRET }}';" >> lib/.secrets.g.dart | |
echo "const walletConnectProjectId = '${{ secrets.WALLET_CONNECT_PROJECT_ID }}';" >> lib/.secrets.g.dart | |
echo "const moralisApiKey = '${{ secrets.MORALIS_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const polygonScanApiKey = '${{ secrets.POLYGON_SCAN_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart | |
echo "const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';" >> cw_solana/lib/.secrets.g.dart | |
echo "const chainStackApiKey = '${{ secrets.CHAIN_STACK_API_KEY }}';" >> cw_solana/lib/.secrets.g.dart | |
echo "const testCakePayApiKey = '${{ secrets.TEST_CAKE_PAY_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const cakePayApiKey = '${{ secrets.CAKE_PAY_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const authorization = '${{ secrets.CAKE_PAY_AUTHORIZATION }}';" >> lib/.secrets.g.dart | |
echo "const CSRFToken = '${{ secrets.CSRF_TOKEN }}';" >> lib/.secrets.g.dart | |
echo "const quantexExchangeMarkup = '${{ secrets.QUANTEX_EXCHANGE_MARKUP }}';" >> lib/.secrets.g.dart | |
echo "const nano2ApiKey = '${{ secrets.NANO2_API_KEY }}';" >> cw_nano/lib/.secrets.g.dart | |
echo "const nanoNowNodesApiKey = '${{ secrets.NANO_NOW_NODES_API_KEY }}';" >> cw_nano/lib/.secrets.g.dart | |
echo "const tronGridApiKey = '${{ secrets.TRON_GRID_API_KEY }}';" >> cw_tron/lib/.secrets.g.dart | |
echo "const tronNowNodesApiKey = '${{ secrets.TRON_NOW_NODES_API_KEY }}';" >> cw_tron/lib/.secrets.g.dart | |
echo "const meldTestApiKey = '${{ secrets.MELD_TEST_API_KEY }}';" >> lib/.secrets.g.dart | |
echo "const meldTestPublicKey = '${{ secrets.MELD_TEST_PUBLIC_KEY}}';" >> lib/.secrets.g.dart | |
echo "const letsExchangeBearerToken = '${{ secrets.LETS_EXCHANGE_TOKEN }}';" >> lib/.secrets.g.dart | |
echo "const letsExchangeAffiliateId = '${{ secrets.LETS_EXCHANGE_AFFILIATE_ID }}';" >> lib/.secrets.g.dart | |
echo "const stealthExBearerToken = '${{ secrets.STEALTH_EX_BEARER_TOKEN }}';" >> lib/.secrets.g.dart | |
echo "const stealthExAdditionalFeePercent = '${{ secrets.STEALTH_EX_ADDITIONAL_FEE_PERCENT }}';" >> lib/.secrets.g.dart | |
- name: download monero_c prebuilds (can't build inside of windows container) | |
run: | | |
dart run tool/download_moneroc_prebuilds.dart | |
- name: Execute Build and Setup Commands | |
run: | | |
echo Run manifest.sh without the need for bash | |
cp -rf ./android/app/src/main/AndroidManifestBase.xml ./android/app/src/main/AndroidManifest.xml | |
copy /Y pubspec_description.yaml pubspec.yaml | |
call flutter pub get | |
call dart run tool\generate_pubspec.dart | |
call flutter pub get | |
call dart run tool\configure.dart --monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana --tron | |
echo === Generating mobx models === | |
cd cw_core | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_monero | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_bitcoin | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_ethereum | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_evm | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_polygon | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_nano | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_bitcoin_cash | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_solana | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
cd cw_tron | |
call flutter pub get | |
call dart run build_runner build --delete-conflicting-outputs | |
cd .. | |
echo === Generating localization files === | |
call dart run tool\generate_localization.dart | |
- name: Build | |
run: | | |
echo === Building the application executable file === | |
call flutter build windows --release | |
- name: Upload Artifact | |
uses: kittaakos/upload-artifact-as-is@v0 | |
with: | |
path: ${{ github.workspace }}/build/app/outputs/flutter-apk/test-apk/ |