-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
217 lines (208 loc) · 8.95 KB
/
tests.yml
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
name: Unit & Integration Tests
env:
JAVA_OPTS: "-Xms512m -Xmx8048m -Xss512m -XX:ReservedCodeCacheSize=512m -server"
TERM: xterm-256color
GH_PACKAGE_REGISTRY_USER: ${{ secrets.GH_PACKAGE_REGISTRY_USER }}
GH_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GH_PACKAGE_REGISTRY_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
# GRADLE_BUILDCACHE_USER: ci
# GRADLE_BUILDCACHE_PSW: ${{ secrets.GRADLE_BUILDCACHE_PSW }}
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
COSMOS_DB_URL: ${{ secrets.COSMOS_DB_URL }}
COSMOS_DB_KEY: ${{ secrets.COSMOS_DB_KEY }}
AZURE_MAPS_SUBSCRIPTION_ID: ${{ secrets.AZURE_MAPS_SUBSCRIPTION_ID }}
AZURE_MAPS_CLIENT_ID: ${{ secrets.AZURE_MAPS_CLIENT_ID }}
AZURE_AD_CLIENT_ID: ${{ secrets.AZURE_AD_CLIENT_ID }}
AZURE_AD_CLIENT_SECRET: ${{ secrets.AZURE_AD_CLIENT_SECRET }}
AZURE_AD_USER_PASSWORD: ${{ secrets.AZURE_AD_USER_PASSWORD }}
AZURE_AD_TENANT: ${{ secrets.AZURE_AD_TENANT }}
AZURE_AD_DOMAIN: ${{ secrets.AZURE_AD_DOMAIN }}
JDK_CURRENT: 21
JDK_DISTRIBUTION: "corretto"
RETRY_ATTEMPTS: 2
RETRY_MINUTES: 40
CATEGORY_REGEX: ".*"
##########################################################################
on:
workflow_dispatch:
schedule:
- cron: '0 15 * * *'
- cron: '0 10 * * *' # This needs to match the condition below that disables PTS mode.
push:
branches:
- master
- '!**.**.**'
- '!heroku-*'
pull_request:
types: [ labeled ]
branches: [ master, pr-* ]
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'apereo/cas' }}
##########################################################################
jobs:
trigger-ci:
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'CI')) && !contains(github.event.pull_request.labels.*.name, 'Renovate') && !contains(github.event.head_commit.message, 'trigger dependency update') && !contains(github.event.head_commit.message, 'documentation update') }}
runs-on: ubuntu-latest
steps:
- name: Trigger CI
run: echo "CI Triggered"
##########################################################################
initialize:
needs: [ trigger-ci ]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JDK_CURRENT }}
distribution: ${{ env.JDK_DISTRIBUTION }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Initialize
run: ls ./ci && find ./ci -type f -name "*.sh" -exec chmod +x "{}" \; && ./ci/init-build.sh
##########################################################################
testcategories:
needs: [ initialize ]
runs-on: ubuntu-latest
outputs:
categories: ${{ steps.get-categories.outputs.categories }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JDK_CURRENT }}
distribution: ${{ env.JDK_DISTRIBUTION }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- id: print-categories
run: ./gradlew --build-cache --configure-on-demand --no-daemon -q testCategories
- id: get-categories
run: echo "categories=$(./gradlew --build-cache --configure-on-demand --no-daemon -q testCategories)" >> $GITHUB_OUTPUT
##########################################################################
tests:
needs: [ testcategories ]
continue-on-error: false
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
category: ${{fromJSON(needs.testcategories.outputs.categories)}}
runs-on: ${{ matrix.os }}
name: ${{ matrix.category }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JDK_CURRENT }}
distribution: ${{ env.JDK_DISTRIBUTION }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Initialize
run: find ./ci -type f -name "*.sh" -exec chmod +x "{}" \; && ./ci/init-build.sh
shell: bash
- name: Run Tests
uses: nick-fields/retry@v3
with:
max_attempts: ${{ env.RETRY_ATTEMPTS }}
retry_on: error
retry_wait_seconds: 5
timeout_minutes: ${{ env.RETRY_MINUTES }}
shell: bash
command: |
if [[ "{{ github.event_name }}" == "schedule" ]] && [[ "{{ github.event.schedule == '0 10 * * *'}}" ]]; then
echo "Running tests without PTS mode"
./testcas.sh --no-watch --category ${{ matrix.category }} --events FAILED --no-pts
[[ $? -eq 0 ]] && ./testcas.sh --no-watch --with-coverage
else
if [[ "{{ github.event_name }}" == "push" ]] || [[ "{{ github.event_name }}" == "schedule" ]]; then
ptsMode="REMAINING_TESTS";
else
ptsMode="RELEVANT_TESTS";
fi
echo "Running tests with PTS mode: $ptsMode"
./testcas.sh --no-watch --category ${{ matrix.category }} --events FAILED --pts $ptsMode
[[ $? -eq 0 ]] && ./testcas.sh --no-watch --with-coverage
fi
- name: Check Coverage Report
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
run: |
xml_files=$(find build/reports -type f -name "*.xml")
if [ -z "$xml_files" ]; then
echo "No coverage XML files found"
else
echo ${xml_files}
fi
- name: Upload to SonarCloud
if: env.SONARCLOUD_TOKEN != null && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule')
run: |
./gradlew sonar --build-cache --configure-on-demand --no-daemon -DskipAot=true --parallel \
-x javadoc -DskipNestedConfigMetadataGen=true -Dverbose=true \
-Dsonar.coverage.jacoco.xmlReportPaths=build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml
- name: "Upload to Codecov"
uses: "codecov/codecov-action@v4"
continue-on-error: true
if: env.CODECOV_TOKEN != null && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule')
with:
token: ${{ env.CODECOV_TOKEN }}
files: ./build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml
flags: ${{ matrix.category }}
name: ${{ matrix.category }}
verbose: true
fail_ci_if_error: false
- name: Upload Coverage Report
uses: "actions/upload-artifact@v4"
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
with:
name: "cas-tests-${{ matrix.category }}.coverage"
path: "./build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml"
##########################################################################
coverage:
runs-on: ubuntu-latest
needs: [ tests ]
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule')
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JDK_CURRENT }}
distribution: ${{ env.JDK_DISTRIBUTION }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Download coverage files
uses: "actions/download-artifact@v4"
with:
path: "reports"
- name: Collect Coverage Files
run: |
find $PWD -type f -name 'jacocoRootReport.xml'
export files=''
for file in $(find $PWD -type f -name 'jacocoRootReport.xml'); do export files="$file,${files}"; done
export files="${files%?}"
echo $files
echo "COVERAGE_REPORTS=${files}" >> $GITHUB_ENV
- name: Upload Coverage to Codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ${{ env.COVERAGE_REPORTS }}
- name: Upload to Codecov
uses: codecov/codecov-action@v4
if: ${{ env.CODECOV_TOKEN != null }}
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: false
files: ${{ env.COVERAGE_REPORTS }}