From 8b569556517a40df58fd0dbf31b728f602121680 Mon Sep 17 00:00:00 2001 From: Varun Dhananjaya Date: Thu, 26 Oct 2023 15:13:36 -0400 Subject: [PATCH] [CI] run ios/android CI on ios_ci/android_ci branches Summary: addressing some feedback from @ashoat regarding branch names and adding tmate to the android CI Test Plan: already tested that the wildcards work and tmate session is set up Reviewers: ashoat, atul Reviewed By: ashoat Subscribers: tomek, wyilio, ashoat Differential Revision: https://phab.comm.dev/D9613 --- .github/workflows/android_ci.yml | 8 +++++++- .github/workflows/ios_ci.yml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android_ci.yml b/.github/workflows/android_ci.yml index 4a2b8c6421..f628ed3067 100644 --- a/.github/workflows/android_ci.yml +++ b/.github/workflows/android_ci.yml @@ -2,7 +2,9 @@ name: Android Build CI on: push: - branches: [master] + branches: + - master + - 'debugci/android_ci/*' paths-ignore: - 'landing/**' - 'web/**' @@ -65,3 +67,7 @@ jobs: - name: Disk Usage run: df -h + + - name: Set up tmate session + if: failure() && startsWith(github.ref, 'refs/heads/debugci/') + uses: mxschmitt/action-tmate@v3 diff --git a/.github/workflows/ios_ci.yml b/.github/workflows/ios_ci.yml index b69655d18f..b037f06a57 100644 --- a/.github/workflows/ios_ci.yml +++ b/.github/workflows/ios_ci.yml @@ -4,7 +4,7 @@ on: push: branches: - master - - 'debugci/*' + - 'debugci/ios_ci/*' paths-ignore: - 'landing/**' - 'web/**'