mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
try another approach (don't know how it used to work but not with the global cached version) (#1797)
Some checks are pending
Cache Dependencies / test (push) Waiting to run
Some checks are pending
Cache Dependencies / test (push) Waiting to run
This commit is contained in:
parent
03ff2287db
commit
6744bb8d52
2 changed files with 21 additions and 11 deletions
9
.github/workflows/cache_dependencies.yml
vendored
9
.github/workflows/cache_dependencies.yml
vendored
|
@ -62,6 +62,7 @@ jobs:
|
||||||
/opt/android/cake_wallet/cw_haven/android/.cxx
|
/opt/android/cake_wallet/cw_haven/android/.cxx
|
||||||
/opt/android/cake_wallet/scripts/monero_c/release
|
/opt/android/cake_wallet/scripts/monero_c/release
|
||||||
key: ${{ hashFiles('**/prepare_moneroc.sh' ,'**/build_monero_all.sh' ,'**/cache_dependencies.yml') }}
|
key: ${{ hashFiles('**/prepare_moneroc.sh' ,'**/build_monero_all.sh' ,'**/cache_dependencies.yml') }}
|
||||||
|
|
||||||
- if: ${{ steps.cache-externals.outputs.cache-hit != 'true' }}
|
- if: ${{ steps.cache-externals.outputs.cache-hit != 'true' }}
|
||||||
name: Generate Externals
|
name: Generate Externals
|
||||||
run: |
|
run: |
|
||||||
|
@ -69,12 +70,16 @@ jobs:
|
||||||
source ./app_env.sh cakewallet
|
source ./app_env.sh cakewallet
|
||||||
./build_monero_all.sh
|
./build_monero_all.sh
|
||||||
|
|
||||||
|
- name: Set up cache path
|
||||||
|
id: cache-path
|
||||||
|
run: echo "cache-file-path=/opt/android/cake_wallet/android/app/key.jks" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Cache Keystore
|
- name: Cache Keystore
|
||||||
id: cache-keystore
|
id: cache-keystore
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: /opt/android/cake_wallet/android/app/key.jks
|
path: ${{ env.cache-file-path }}
|
||||||
key: $STORE_PASS
|
key: keystore
|
||||||
|
|
||||||
- if: ${{ steps.cache-keystore.outputs.cache-hit != 'true' }}
|
- if: ${{ steps.cache-keystore.outputs.cache-hit != 'true' }}
|
||||||
name: Generate KeyStore
|
name: Generate KeyStore
|
||||||
|
|
23
.github/workflows/pr_test_build_android.yml
vendored
23
.github/workflows/pr_test_build_android.yml
vendored
|
@ -115,15 +115,20 @@ jobs:
|
||||||
cd /opt/android/cake_wallet/scripts/android/
|
cd /opt/android/cake_wallet/scripts/android/
|
||||||
./build_mwebd.sh --dont-install
|
./build_mwebd.sh --dont-install
|
||||||
|
|
||||||
# - name: Cache Keystore
|
|
||||||
# id: cache-keystore
|
- name: Set up cache path
|
||||||
# uses: actions/cache@v3
|
id: cache-path
|
||||||
# with:
|
run: echo "cache-file-path=/opt/android/cake_wallet/android/app/key.jks" >> $GITHUB_ENV
|
||||||
# path: /opt/android/cake_wallet/android/app/key.jks
|
|
||||||
# key: $STORE_PASS
|
- name: Cache Keystore
|
||||||
#
|
id: cache-keystore
|
||||||
# - if: ${{ steps.cache-keystore.outputs.cache-hit != 'true' }}
|
uses: actions/cache@v3
|
||||||
- name: Generate KeyStore
|
with:
|
||||||
|
path: ${{ env.cache-file-path }}
|
||||||
|
key: keystore
|
||||||
|
|
||||||
|
- if: ${{ steps.cache-keystore.outputs.cache-hit != 'true' }}
|
||||||
|
name: Generate KeyStore
|
||||||
run: |
|
run: |
|
||||||
cd /opt/android/cake_wallet/android/app
|
cd /opt/android/cake_wallet/android/app
|
||||||
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
|
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
|
||||||
|
|
Loading…
Reference in a new issue