Skip to content

Commit

Permalink
Disable daily CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrandp committed Apr 4, 2024
1 parent a4c0943 commit 9865d03
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/daily_runner.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
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
#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

0 comments on commit 9865d03

Please sign in to comment.