Skip to content

Commit f8fd398

Browse files
committed
[SPARK-50645][INFRA] Make more daily builds able to manually trigger
### What changes were proposed in this pull request? similar to #49207, make the rest daily builds able to be executed manually ### Why are the changes needed? re-run failed tests in a daily build won't fetch the latest code changes, so somethimes we don't have a quick way to test daily build in time. ### Does this PR introduce _any_ user-facing change? no, infra-only ### How was this patch tested? will manually check after merge ### Was this patch authored or co-authored using generative AI tooling? no Closes #49264 from zhengruifeng/add_manually_trigger. Authored-by: Ruifeng Zheng <[email protected]> Signed-off-by: Ruifeng Zheng <[email protected]>
1 parent f6f6dae commit f8fd398

17 files changed

+17
-0
lines changed

.github/workflows/build_coverage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Coverage (master, Scala 2.13, Hadoop 3, JDK 17)"
2222
on:
2323
schedule:
2424
- cron: '0 10 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_infra_images_cache.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ on:
3939
- '.github/workflows/build_infra_images_cache.yml'
4040
# Create infra image when cutting down branches/tags
4141
create:
42+
workflow_dispatch:
4243
jobs:
4344
main:
4445
if: github.repository == 'apache/spark'

.github/workflows/build_java21.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build (master, Scala 2.13, Hadoop 3, JDK 21)"
2222
on:
2323
schedule:
2424
- cron: '0 4 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_maven.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Maven (master, Scala 2.13, Hadoop 3, JDK 17)"
2222
on:
2323
schedule:
2424
- cron: '0 13 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_maven_java21.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Maven (master, Scala 2.13, Hadoop 3, JDK 21)"
2222
on:
2323
schedule:
2424
- cron: '0 14 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_maven_java21_macos15.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Maven (master, Scala 2.13, Hadoop 3, JDK 21, MacOS-15)"
2222
on:
2323
schedule:
2424
- cron: '0 20 */2 * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_non_ansi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Non-ANSI (master, Hadoop 3, JDK 17, Scala 2.13)"
2222
on:
2323
schedule:
2424
- cron: '0 1 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_python_3.10.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Python-only (master, Python 3.10)"
2222
on:
2323
schedule:
2424
- cron: '0 17 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_python_3.11_macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Python-only (master, Python 3.11, MacOS)"
2222
on:
2323
schedule:
2424
- cron: '0 21 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

.github/workflows/build_python_3.12.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ name: "Build / Python-only (master, Python 3.12)"
2222
on:
2323
schedule:
2424
- cron: '0 19 * * *'
25+
workflow_dispatch:
2526

2627
jobs:
2728
run-build:

0 commit comments

Comments
 (0)