mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 17:57:36 +00:00
Merge pull request #681 from cake-tech/CW-261-enhance-workflow
Cw 261 enhance workflow
This commit is contained in:
commit
7e19580ee3
1 changed files with 25 additions and 7 deletions
32
.github/workflows/pr_test_build.yml
vendored
32
.github/workflows/pr_test_build.yml
vendored
|
@ -34,6 +34,24 @@ jobs:
|
||||||
./install_ndk.sh
|
./install_ndk.sh
|
||||||
source ./app_env.sh cakewallet
|
source ./app_env.sh cakewallet
|
||||||
./app_config.sh
|
./app_config.sh
|
||||||
|
|
||||||
|
- 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
|
||||||
|
key: externals-cache-key
|
||||||
|
|
||||||
|
- if: ${{ steps.cache-externals.outputs.cache-hit != 'true' }}
|
||||||
|
name: Generate Externals
|
||||||
|
run: |
|
||||||
|
cd /opt/android/cake_wallet/scripts/android/
|
||||||
|
source ./app_env.sh cakewallet
|
||||||
./build_all.sh
|
./build_all.sh
|
||||||
./copy_monero_deps.sh
|
./copy_monero_deps.sh
|
||||||
|
|
||||||
|
@ -111,19 +129,19 @@ jobs:
|
||||||
# --token ${{ secrets.APP_CENTER_TOKEN }} \
|
# --token ${{ secrets.APP_CENTER_TOKEN }} \
|
||||||
# --quiet
|
# --quiet
|
||||||
|
|
||||||
- name: Send Test APK
|
|
||||||
run: |
|
|
||||||
cd /opt/android/cake_wallet
|
|
||||||
var=$(curl --upload-file build/app/outputs/apk/release/app-release.apk https://transfer.sh/$GITHUB_HEAD_REF.apk -H "Max-Days: 10")
|
|
||||||
curl ${{ secrets.SLACK_WEB_HOOK }} -H "Content-Type: application/json" -d '{"apk_link": "'"$var"'","ticket": "'"$GITHUB_HEAD_REF"'"}'
|
|
||||||
|
|
||||||
- name: Rename apk file
|
- name: Rename apk file
|
||||||
run: |
|
run: |
|
||||||
cd /opt/android/cake_wallet/build/app/outputs/apk/release
|
cd /opt/android/cake_wallet/build/app/outputs/apk/release
|
||||||
mkdir test-apk
|
mkdir test-apk
|
||||||
mv app-release.apk test-apk/$GITHUB_HEAD_REF.apk
|
cp app-release.apk test-apk/$GITHUB_HEAD_REF.apk
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: kittaakos/upload-artifact-as-is@v0
|
uses: kittaakos/upload-artifact-as-is@v0
|
||||||
with:
|
with:
|
||||||
path: /opt/android/cake_wallet/build/app/outputs/apk/release/test-apk/
|
path: /opt/android/cake_wallet/build/app/outputs/apk/release/test-apk/
|
||||||
|
|
||||||
|
- name: Send Test APK
|
||||||
|
run: |
|
||||||
|
cd /opt/android/cake_wallet
|
||||||
|
var=$(curl --upload-file build/app/outputs/apk/release/app-release.apk https://transfer.sh/$GITHUB_HEAD_REF.apk -H "Max-Days: 10")
|
||||||
|
curl ${{ secrets.SLACK_WEB_HOOK }} -H "Content-Type: application/json" -d '{"apk_link": "'"$var"'","ticket": "'"$GITHUB_HEAD_REF"'"}'
|
||||||
|
|
Loading…
Reference in a new issue