name: Android Shell App on: workflow_dispatch: {} schedule: - cron: '20 5 * * 2,4,6' # 5:20 AM UTC time on every Tuesday, Thursday and Saturday push: paths: - .github/workflows/shell-app-android.yml jobs: build: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Get cache key of git lfs files id: git-lfs run: echo "::set-output name=sha256::$(git lfs ls-files | openssl dgst -sha256)" - uses: actions/cache@v2 with: path: .git/lfs key: ${{ steps.git-lfs.outputs.sha256 }} - run: git lfs pull - run: echo "$(pwd)/bin" >> $GITHUB_PATH - run: echo "EXPO_ROOT_DIR=$(pwd)" >> $GITHUB_ENV - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - run: yarn install --frozen-lockfile - uses: actions/cache@v2 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('android/*.gradle*') }} restore-keys: | ${{ runner.os }}-gradle- - uses: actions/cache@v2 id: cache-android-ndk with: path: /usr/local/lib/android/sdk/ndk/19.2.5345600/ key: ${{ runner.os }}-ndk-19.2.5345600 restore-keys: | ${{ runner.os }}-ndk- - name: Install NDK if: steps.cache-android-ndk.outputs.cache-hit != 'true' run: | sudo $ANDROID_HOME/tools/bin/sdkmanager --install "ndk;19.2.5345600" - name: Build Android packages env: ANDROID_NDK_HOME: /usr/local/lib/android/sdk/ndk/19.2.5345600/ run: expotools android-build-packages --packages all - name: Clean Android build artifacts that would needlessly bloat the shell app env: ANDROID_NDK_HOME: /usr/local/lib/android/sdk/ndk/19.2.5345600/ run: ./gradlew clean working-directory: android - name: Build shell app tarball run: ./buildAndroidTarballLocally.sh - name: Make an artifact uses: actions/upload-artifact@v2 with: name: android-shell-app path: artifacts/android-shell-builder.tar.gz - run: sudo apt-get install awscli - name: Upload shell app tarball to S3 if: ${{ github.event_name == 'workflow_dispatch' }} env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} S3_URI: s3://exp-artifacts/android-shell-builder-${{ github.sha }}.tar.gz run: | aws s3 cp --acl public-read artifacts/android-shell-builder.tar.gz $S3_URI echo "Release tarball uploaded to $S3_URI" echo "You can deploy this by updating or creating a new file in https://github.com/expo/turtle/tree/master/shellTarballs/android" echo "Then follow the deployment instructions: https://github.com/expo/turtle-deploy" - name: Set the description for slack message if: ${{ github.event_name != 'push' }} run: | if [ ${{ github.event_name }} == 'schedule' ]; then echo "SLACK_MESSAGE_DESCRIPTION=scheduled" >> $GITHUB_ENV else echo "SLACK_MESSAGE_DESCRIPTION=triggered by ${{ github.actor }}" >> $GITHUB_ENV fi - uses: 8398a7/action-slack@v3 if: ${{ github.event_name != 'push' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_ANDROID }} with: channel: '#platform-android' status: ${{ job.status }} fields: job,message,ref,eventName,author,took author_name: Android Shell App (${{ env.SLACK_MESSAGE_DESCRIPTION }})