diff --git a/.github/workflows/android.publish.yml b/.github/workflows/android.publish.yml index cc526d4a1..9bd2e1c41 100644 --- a/.github/workflows/android.publish.yml +++ b/.github/workflows/android.publish.yml @@ -45,6 +45,10 @@ jobs: ln -s $(which ccache) /usr/local/bin/clang++ export CCACHE_COMPILERCHECK=content export CCACHE_DEBUG=true + mkdir .ccachedebug + export CCACHE_DEBUG=true + export CCACHE_DEBUGDIR=.ccachedebug + export CCACHE_DEBUGLEVEL=1 - name: Cache gradle uses: actions/cache@v2 @@ -68,15 +72,21 @@ jobs: - name: CCache Stats after build 1 run: ccache -sv - - name: Build unsigned app bundle - run: | - cd apps/mobile/native/android - ./gradlew clean - cd ../../../../ - yarn release:android:bundle + - name: Upload to Github + uses: actions/upload-artifact@v2 + with: + name: CCache_logs + path: .ccachedebug + + # - name: Build unsigned app bundle + # run: | + # cd apps/mobile/native/android + # ./gradlew clean + # cd ../../../../ + # yarn release:android:bundle - - name: CCache Stats after build 2 - run: ccache -sv + # - name: CCache Stats after build 2 + # run: ccache -sv # - name: Sign app bundle for Playstore release # id: sign_app