-
Notifications
You must be signed in to change notification settings - Fork 18
291 lines (291 loc) · 9.58 KB
/
prChecks.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
name: 'PR-Checks'
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
branches:
- master
concurrency:
group: prCheck-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
# Validate YAML
Validate-YAML:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Install tools
run: |
sudo apt -y update
sudo apt install -y yamllint
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**/*.yml
- name: Validate any YAML files
run: |
status=0
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if yamllint $file; then
echo "YAML $file is valid"
else
echo "YAML $file is invalid"
status=1
fi
done
exit $status
# Validate XML
Validate-XML:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Install tools
run: |
sudo apt -y update
sudo apt install -y libxml2-utils
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**/*.xml
- name: Validate any XML files
run: |
status=0
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "Validating XML file: $file"
if xmllint --noout $file; then
echo "XML $file is valid"
else
echo "XML $file is invalid"
status=1
fi
done
exit $status
# Validate Perl scripts
Validate-Perl-Scripts:
runs-on: ubuntu-latest
container: ghcr.io/galacticusorg/buildenv:latest
steps:
- uses: actions/checkout@v4
- name: Check out repository analysis-perl
uses: actions/checkout@v4
with:
repository: galacticusorg/analysis-perl
path: analysis-perl
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "GALACTICUS_ANALYSIS_PERL_PATH=$GITHUB_WORKSPACE/analysis-perl" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Get changed scripts
id: changed-scripts
uses: tj-actions/changed-files@v45
with:
files: |
**/*.pl
- name: Install tools
run: |
apt -y update
apt install -y libxml-simple-perl
- name: Validate any Perl scripts
run: |
status=0
for file in ${{ steps.changed-scripts.outputs.all_changed_files }}; do
if perl -c $file; then
echo "Perl script $file compiles correctly"
else
echo "Perl script $file fails to compile"
status=1
fi
if [[ -x $file ]]; then
echo "Perl script $file is executable"
else
echo "Perl script $file is not executable"
status=1
fi
done
exit $status
# Validate Perl modules
Validate-Perl-Modules:
runs-on: ubuntu-latest
container: ghcr.io/galacticusorg/buildenv:latest
steps:
- uses: actions/checkout@v4
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Get changed modules
id: changed-modules
uses: tj-actions/changed-files@v45
with:
files: |
**/*.pm
- name: Install tools
run: |
apt -y update
apt install -y libxml-simple-perl
- name: Validate any Perl modules
run: |
status=0
for file in ${{ steps.changed-modules.outputs.all_changed_files }}; do
if perl -c $file; then
echo "Perl module $file compiles correctly"
else
echo "Perl module $file fails to compile"
status=1
fi
done
exit $status
# Fortran static analysis
Fortran-Static-Analysis:
runs-on: ubuntu-latest
container: ghcr.io/galacticusorg/buildenv:latest
steps:
- uses: actions/checkout@v4
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**/*.F90
- name: Perform static analysis on Fortran files
run: |
status=0
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if ./scripts/aux/staticAnalyzer.pl $file; then
echo "Fortran file $file passes analysis"
else
echo "Fortran file $file fails analysis"
status=1
fi
done
exit $status
# Embedded XML and LaTeX checks
Embedded-XML-LaTeX:
runs-on: ubuntu-latest
container: ghcr.io/galacticusorg/buildenv:latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "DICTIONARY=en_US" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Install tools
run: |
apt -y update
apt install -y texlive texlive-latex-extra texlive-science texlive-extra-utils hunspell hunspell-en-us libxml-simple-perl libregexp-common-perl libfile-temp-perl
- name: Build class information
run: |
cd $GALACTICUS_EXEC_PATH
make -j2 work/build/stateStorables.xml
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**/*.F90
**/*.Inc
- name: Perform checks of embedded XML and LaTeX
run: |
status=0
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if ./scripts/aux/embeddedAnalyzer.pl $file warnings.md; then
echo "Embedded XML/LaTeX in file $file passes analysis"
else
echo "Embedded XML/LaTeX in file $file fails analysis"
status=1
fi
done
exit $status
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@v3
with:
files: warnings.md
- name: Output to a job summary
if: steps.check_files.outputs.files_exists == 'true'
run: |
cat warnings.md >> $GITHUB_STEP_SUMMARY
- name: Comment on the PR if any warnings were found
if: steps.check_files.outputs.files_exists == 'true'
continue-on-error: true
uses: thollander/actions-comment-pull-request@v3
with:
file-path: warnings.md
# Spell check LaTeX files
Spell-Check-LaTeX:
runs-on: ubuntu-latest
container: ghcr.io/galacticusorg/buildenv:latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: "Set environmental variables"
run: |
echo "GALACTICUS_EXEC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "DICTIONARY=en_US" >> $GITHUB_ENV
- name: Mark directory safe
run: |
git config --global --add safe.directory $GALACTICUS_EXEC_PATH
- name: Install tools
run: |
apt -y update
apt install -y texlive texlive-latex-extra texlive-science texlive-extra-utils hunspell hunspell-en-us libxml-simple-perl libregexp-common-perl libfile-temp-perl
- name: Build class information
run: |
cd $GALACTICUS_EXEC_PATH
make -j2 work/build/stateStorables.xml
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**/*.tex
- name: Perform checks of LaTeX files
run: |
status=0
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
./scripts/aux/spellChecker.pl $file warnings.md
done
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@v3
with:
files: warnings.md
- name: Comment on the PR if any warnings were found
if: steps.check_files.outputs.files_exists == 'true'
uses: thollander/actions-comment-pull-request@v3
with:
file-path: warnings.md