[Build] Daily QA Build #540
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
# Daily QA Build workflow that runs the reusable build_ios and build_android workflows | |
# with default inputs for QA builds | |
name: '[Build] Daily QA Build' | |
on: | |
# Run on weekdays 4:00 AM UTC | |
schedule: | |
- cron: '0 4 * * 1,2,3,4,5' | |
jobs: | |
queue_build: | |
name: Queue Build | |
uses: ./.github/workflows/queue_builds.yml | |
secrets: inherit | |
start_slack_thread: | |
name: Start Slack thread | |
needs: queue_build | |
uses: ./.github/workflows/start_slack_thread.yml | |
secrets: inherit | |
with: | |
message: 'QA build process starting. Please see :thread: for results. This process may take a while.' | |
ios: | |
name: iOS QA Build | |
needs: start_slack_thread | |
uses: ./.github/workflows/build_ios.yml | |
secrets: inherit | |
with: | |
slack_thread_ts: ${{needs.start_slack_thread.outputs.thread_ts}} | |
android: | |
name: Android QA Build | |
needs: start_slack_thread | |
uses: ./.github/workflows/build_android.yml | |
secrets: inherit | |
with: | |
slack_thread_ts: ${{needs.start_slack_thread.outputs.thread_ts}} | |