Skip to content

Commit

Permalink
Move monorepo-build CI to nightly runs (software-mansion#4677)
Browse files Browse the repository at this point in the history
## Summary

Currently this CI is extremely slow and we often accidentally cancel
it/have to cancel it when we want to merge more often. With this change
it's only run when it's absolutely needed and on daily (nightly) basis.
  • Loading branch information
tjzel authored Jul 6, 2023
1 parent 04bd8e1 commit 265fba5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-monorepo-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on:
schedule:
- cron: '37 19 * * *' # at 21:37 every day
workflow_dispatch:

jobs:
call-build-workflow-rea-v3:
uses: ./.github/workflows/build-monorepo.yml
7 changes: 7 additions & 0 deletions .github/workflows/build-monorepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ on:
push:
branches:
- main
paths:
- .github/workflows/build-monorepo.yml
- .github/workflows/build-monorepo-action.yml
- RNReanimated.podspec
- scripts/reanimated_utils.rb
- android/build.gradle
workflow_call:

jobs:
build_android_reanimated_non_hoisted:
Expand Down

0 comments on commit 265fba5

Please sign in to comment.