-
Notifications
You must be signed in to change notification settings - Fork 482
228 lines (217 loc) · 9.69 KB
/
Copy pathcicd_4-nightly.yml
File metadata and controls
228 lines (217 loc) · 9.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# Nightly Build-Test-Deploy Workflow
#
# This workflow is triggered nightly or manually via workflow_dispatch.
# It orchestrates a comprehensive nightly build, test, and deployment process.
#
# Key features:
# - Scheduled to run nightly at 3:18 AM
# - Manual trigger option with configurable inputs
# - Comprehensive process including build, tests, CLI artifact building, and deployment
# - Optional NPM package publishing
# - Deployment to the nightly environment
# - Final reporting of the workflow status
#
# Commit pinning:
# - Default (both scheduled and manual dispatch): builds from the last commit on main
# at or before midnight UTC. This ensures repeatability — manually re-running the
# nightly later in the day to investigate a failure produces the same build.
# The date tag (nightly_YYYYMMDD) correctly labels the day covered, not the run day.
# - Manual dispatch with use-latest-commit=true: builds from current HEAD of main,
# useful when you want to pick up commits made after midnight.
name: '-4 Nightly Workflow'
run-name: "Nightly${{ inputs.use-latest-commit && ' (HEAD)' || '' }}${{ inputs.java-version && format(' [{0}]', inputs.java-version) || '' }}"
on:
schedule:
- cron: "18 3 * * *" # every night at 3:18 AM
workflow_dispatch:
inputs:
reuse-previous-build:
description: 'Indicates if the workflow should reuse the previous build'
type: boolean
default: false
build-on-missing-artifacts:
type: boolean
description: 'Indicates if the workflow should build on missing artifacts'
default: true
publish-npm-cli:
type: boolean
description: 'Indicates if the workflow should publish the NPM package on the registry'
default: false
run-all-tests:
description: 'Run all tests'
type: boolean
default: true
java-version:
description: 'Override Java version (SDKMAN format, e.g., 25.0.1-open)'
type: string
required: false
default: ''
maven-compiler-release:
description: 'Override Maven compiler release version (e.g., 21). Preferred over source/target.'
type: string
required: false
default: ''
artifact-suffix:
description: 'Override artifact suffix (e.g., -java25, -java25.0.1, -java25-ms). If not set, derived from java-version major.'
type: string
required: false
default: ''
use-latest-commit:
description: 'Use current HEAD of main instead of the midnight UTC commit. Set to true when you want to pick up commits made after midnight rather than reproduce the scheduled run.'
type: boolean
default: false
opensearch_phase:
description: 'Run the integration suites under ES->OS migration phase(s). none=off/default; 1/2/3 = single phase; 1,2 / 1,3 / 2,3 = subset; all = sweep 1,2,3. Any active value skips deployment (test-only run).'
type: choice
required: false
default: 'none'
options:
- 'none'
- '1'
- '2'
- '3'
- '1,2'
- '1,3'
- '2,3'
- 'all'
jobs:
# Setup job - determines the commit to build from.
# Default (scheduled and manual): last commit on main at or before midnight UTC for repeatability.
# Manual with use-latest-commit=true: current HEAD of main.
setup:
name: Setup
runs-on: ubuntu-${{ vars.UBUNTU_RUNNER_VERSION || '24.04' }}
outputs:
build-ref: ${{ steps.find-commit.outputs.build-ref }}
tag-date: ${{ steps.find-commit.outputs.tag-date }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Find Build Commit
id: find-commit
run: |
if [[ "${{ inputs.use-latest-commit }}" == "true" ]]; then
# Explicit override: use current HEAD of main.
# Useful when you want to pick up commits made after midnight.
BUILD_REF=$(git rev-parse HEAD)
TAG_DATE=$(date -u +%Y%m%d)
echo "use-latest-commit=true: building from current HEAD of main: ${BUILD_REF}"
else
# Default for both scheduled and manual dispatch: use the last commit
# at or before midnight UTC. This ensures repeatability — manually
# re-running later in the day to investigate a failure gives the same build.
MIDNIGHT=$(date -u +"%Y-%m-%dT00:00:00")
BUILD_REF=$(git log --before="${MIDNIGHT}" --format="%H" -1)
if [[ -z "${BUILD_REF}" ]]; then
# No commits before today's midnight — use the absolute last commit.
# This handles edge cases (e.g., very new repos) without falling back to
# current HEAD which might include post-midnight commits.
BUILD_REF=$(git log --format="%H" -1)
echo "⚠️ No commit found before ${MIDNIGHT}, using last available commit: ${BUILD_REF}"
else
echo "Building from commit at midnight UTC (${MIDNIGHT}): ${BUILD_REF}"
fi
# Tag with yesterday's date: the nightly covers the previous calendar day
TAG_DATE=$(date -u -d "yesterday" +%Y%m%d)
fi
echo "build-ref=${BUILD_REF}" >> "$GITHUB_OUTPUT"
echo "tag-date=${TAG_DATE}" >> "$GITHUB_OUTPUT"
# Initialize the nightly build process
initialize:
name: Initialize
uses: ./.github/workflows/cicd_comp_initialize-phase.yml
# Nightly runs all tests - no change detection needed
with:
change-detection: 'disabled'
reuse-previous-build: ${{ inputs.reuse-previous-build || false }}
build-on-missing-artifacts: ${{ inputs.build-on-missing-artifacts || false }}
# Build job - only runs if no artifacts were found during initialization
build:
name: Nightly Build
needs: [ setup, initialize ]
if: needs.initialize.outputs.found_artifacts == 'false'
uses: ./.github/workflows/cicd_comp_build-phase.yml
with:
ref: ${{ needs.setup.outputs.build-ref }}
java-version: ${{ github.event.inputs.java-version || '' }}
maven-compiler-release: ${{ github.event.inputs.maven-compiler-release || '' }}
artifact-suffix: ${{ github.event.inputs.artifact-suffix || '' }}
permissions:
contents: read
packages: write
# Test job - runs all tests by default
test:
name: Nightly Test
needs: [ initialize,build ]
if: always() && !failure() && !cancelled()
uses: ./.github/workflows/cicd_comp_test-phase.yml
with:
run-all-tests: ${{ inputs.run-all-tests || true }}
artifact-run-id: ${{ needs.initialize.outputs.artifact-run-id }}
e2e: false
# On-demand ES->OS phased run: 'none'/empty (or scheduled) -> off; 1/2/3 -> single phase;
# all -> sweep phases 1,2,3 across the integration battery.
opensearch_phase: ${{ inputs.opensearch_phase }}
java-version: ${{ github.event.inputs.java-version || '' }}
maven-compiler-release: ${{ github.event.inputs.maven-compiler-release || '' }}
artifact-suffix: ${{ github.event.inputs.artifact-suffix || '' }}
secrets:
DOTCMS_LICENSE: ${{ secrets.DOTCMS_LICENSE }}
permissions:
contents: read
packages: write
# CLI Build job - builds CLI artifacts
# Skipped when java-version is overridden due to GraalVM/Quarkus compatibility requirements
build-cli:
name: Nightly CLI Build
needs: [ initialize, test ]
if: always() && !failure() && !cancelled() && !inputs.java-version
uses: ./.github/workflows/cicd_comp_cli-native-build-phase.yml
with:
buildNativeImage: true
branch: ${{ github.ref }}
artifact-run-id: ${{ needs.initialize.outputs.artifact-run-id }}
# Deployment job - deploys to the nightly environment.
# Skipped for ANY on-demand ES->OS phased run (single phase, a subset like 1,2, or all):
# those are test-only, so we never deploy a build that ran under a non-default migration
# phase. Derived from "phase off" so comma-list subsets are covered too.
deployment:
needs: [ setup, initialize,build-cli,test ]
if: always() && !failure() && !cancelled() && (inputs.opensearch_phase == '' || inputs.opensearch_phase == 'none' || inputs.opensearch_phase == '0')
uses: ./.github/workflows/cicd_comp_deployment-phase.yml
with:
artifact-run-id: ${{ needs.initialize.outputs.artifact-run-id }}
environment: nightly
tag-identifier: ${{ needs.setup.outputs.tag-date }}
deploy-cli: true
deploy-dev-image: true
publish-npm-cli: ${{ ( github.event_name == 'workflow_dispatch' && inputs.publish-npm-cli == true ) || github.event_name == 'schedule' }}
java-version: ${{ github.event.inputs.java-version || '' }}
artifact-suffix: ${{ github.event.inputs.artifact-suffix || '' }}
secrets:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
EE_REPO_USERNAME: ${{ secrets.EE_REPO_USERNAME }}
EE_REPO_PASSWORD: ${{ secrets.EE_REPO_PASSWORD }}
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
NPM_ORG_TOKEN: ${{ secrets.NPM_ORG_TOKEN }}
DEV_REQUEST_TOKEN: ${{ secrets.DEV_REQUEST_TOKEN }}
# Finalize job - aggregates results from previous jobs
finalize:
name: Finalize
if: always()
needs: [ setup, initialize, build, build-cli, test, deployment ]
uses: ./.github/workflows/cicd_comp_finalize-phase.yml
with:
artifact-run-id: ${{ needs.initialize.outputs.artifact-run-id }}
needsData: ${{ toJson(needs) }}
# Report job - generates and sends the final workflow report
report:
name: Report
if: always()
needs: [ finalize ]
uses: ./.github/workflows/cicd_post-workflow-reporting.yml
secrets:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}