Bump rexml from 3.2.5 to 3.2.8 in /tests/test-app-ndk #892
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: Run test & large tests daily | |
#on: | |
# schedule: | |
# - cron: '0 22 * * *' | |
#jobs: | |
# job_build_and_test: | |
# runs-on: ubuntu-22.04 | |
# container: | |
# image: docker://docker:stable-git | |
# options: --name=runner | |
# strategy: | |
# matrix: | |
# android_api: [{ "api": 33, "build_tools": "33.0.1" }, { "api": 34, "build_tools": "34.0.0" }] | |
# android_ndk: ["--android-ndk"] | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# with: | |
# ref: develop | |
# | |
# - name: Build and large tests | |
# env: | |
# GCLOUD_SERVICE_KEY: ${{ secrets.GCLOUD_SERVICE_KEY }} | |
# FIREBASE_PROJECT_ID: ${{ secrets.FIREBASE_PROJECT_ID }} | |
# run: ./ci_cd.sh --build --test --large-test --android-api ${{ matrix.android_api.api }} --build-tools ${{ matrix.android_api.build_tools }} ${{ matrix.android_ndk }} --gcloud |