Skip to content

Commit 91a8d3a

Browse files
committed
Disable continuous-integration workflow in favor of fast-continuous-integration
The original continuous-integration.yml workflow has been disabled: - Commented out schedule triggers (4 daily builds) - Commented out workflow_dispatch (manual trigger) - Added workflow_call as dummy trigger to keep YAML valid - Workflow kept for reference but will not run automatically The fast-continuous-integration.yml workflow is now the primary CI/CD workflow: - 58% faster (39min vs 94min) - Same test coverage - Same schedule (4 daily builds on weekdays) - Parallel test execution and deploy steps
1 parent b60a3fe commit 91a8d3a

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
name: CI/CD build
22

33
on:
4-
schedule:
5-
# Combined schedule covering both EST and CET working hours
6-
# Morning/Early builds
7-
- cron: '30 6 * * 1-5' # 7:30 AM CET / 1:30 AM EST
8-
- cron: '30 11 * * 1-5' # 12:30 PM CET / 6:30 AM EST
9-
# Midday builds
10-
- cron: '30 16 * * 1-5' # 7:30 PM CET / 11:30 AM EST
11-
# Afternoon/Evening builds
12-
- cron: '30 21 * * 1-5' # 10:30 PM CET / 4:30 PM EST
13-
workflow_dispatch:
4+
# DISABLED: Replaced by fast-continuous-integration.yml workflow
5+
# This workflow is kept for reference but will not run automatically
6+
# To re-enable, uncomment the schedule and workflow_dispatch sections below
7+
workflow_call: # Dummy trigger - workflow can only be called by other workflows (effectively disabled)
8+
# schedule:
9+
# # Combined schedule covering both EST and CET working hours
10+
# # Morning/Early builds
11+
# - cron: '30 6 * * 1-5' # 7:30 AM CET / 1:30 AM EST
12+
# - cron: '30 11 * * 1-5' # 12:30 PM CET / 6:30 AM EST
13+
# # Midday builds
14+
# - cron: '30 16 * * 1-5' # 7:30 PM CET / 11:30 AM EST
15+
# # Afternoon/Evening builds
16+
# - cron: '30 21 * * 1-5' # 10:30 PM CET / 4:30 PM EST
17+
# workflow_dispatch:
1418
# Note: If push triggers are added in the future, they should include:
1519
# push:
1620
# paths-ignore:

0 commit comments

Comments
 (0)