-
Notifications
You must be signed in to change notification settings - Fork 1.2k
199 lines (178 loc) · 6.86 KB
/
Copy pathpr-build.yml
File metadata and controls
199 lines (178 loc) · 6.86 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
# Advisory only. This check is never marked as a required status check, and main
# has no branch protection rule referencing it. It builds and tests exactly the
# article folder(s) a PR touches -- nothing else. A folder is classified once:
# "dotnet" when it holds a .sln, "npm" when it holds a package.json at its root
# or in an immediate subfolder (the layout an Angular series folder uses).
# Folders in .github/ci-skip-folders.txt are filtered out before the matrix is
# built, so they never show up as a run, passing or failing (edit that file, not
# this one, to change what's excluded).
name: PR Build
on:
pull_request:
branches: [main]
# Cancel superseded runs on the same PR when new commits land.
concurrency:
group: pr-build-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
contents: read
jobs:
detect-changes:
name: Detect changed article folders
runs-on: ubuntu-latest
outputs:
folders: ${{ steps.compute.outputs.folders }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Compute changed, buildable folders
id: compute
shell: bash
run: |
set -euo pipefail
BASE_SHA="${{ github.event.pull_request.base.sha }}"
HEAD_SHA="${{ github.event.pull_request.head.sha }}"
SKIP_FILE=".github/ci-skip-folders.txt"
# Skip list: strip comments and blank lines.
mapfile -t skip_list < <(
sed 's/\r$//' "$SKIP_FILE" | grep -vE '^\s*#' | grep -vE '^\s*$'
)
is_skipped() {
local f="$1"
for s in "${skip_list[@]:-}"; do
[ "$f" = "$s" ] && return 0
done
return 1
}
# Reduce every changed path to its "<category>/<article>" prefix.
# Every article folder in this repo is exactly two levels deep.
mapfile -t folders < <(
git diff --name-only "$BASE_SHA" "$HEAD_SHA" \
| awk -F/ 'NF>=2 {print $1"/"$2}' \
| sort -u
)
entries="[]"
for f in "${folders[@]:-}"; do
[ -z "$f" ] && continue
if is_skipped "$f"; then
echo "::notice::Skipping '$f' -- listed in $SKIP_FILE."
continue
fi
# Classify the folder. A .sln makes it a .NET folder; otherwise a
# package.json at the folder root or one level down makes it an npm
# folder. Anything else has nothing to build.
kind=""
if compgen -G "$f"/*.sln > /dev/null 2>&1; then
kind="dotnet"
elif [ -f "$f/package.json" ] || compgen -G "$f"/*/package.json > /dev/null 2>&1; then
kind="npm"
fi
# Folder may have been deleted in this PR -- skip if nothing buildable remains at HEAD.
if [ -z "$kind" ]; then
echo "::notice::Skipping '$f' -- no .sln at HEAD (deleted or restructured)."
continue
fi
entries=$(jq -c --arg folder "$f" --arg kind "$kind" '. + [{folder: $folder, kind: $kind}]' <<<"$entries")
done
echo "folders=$entries" >> "$GITHUB_OUTPUT"
echo "Changed, buildable folders:"
echo "$entries" | jq .
build-and-test:
name: Build & test (${{ matrix.folder }})
needs: detect-changes
if: needs.detect-changes.outputs.folders != '[]'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.detect-changes.outputs.folders) }}
steps:
- name: Checkout (sparse)
uses: actions/checkout@v4
with:
sparse-checkout: |
${{ matrix.folder }}
sparse-checkout-cone-mode: true
- name: Setup .NET SDKs
if: matrix.kind == 'dotnet'
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
9.0.x
10.0.x
- name: Build and test
if: matrix.kind == 'dotnet'
working-directory: ${{ matrix.folder }}
shell: bash
run: |
set -euo pipefail
sln=$(find . -maxdepth 1 -iname "*.sln" | head -n1)
if [ -z "$sln" ]; then
echo "::notice::No .sln found in ${{ matrix.folder }} -- skipping."
exit 0
fi
echo "Building $sln"
dotnet build "$sln" --configuration Release
echo "Testing $sln (no-op for folders with no test project)"
dotnet test "$sln" --configuration Release --no-build --filter "FullyQualifiedName!~Live"
- name: Setup Node
if: matrix.kind == 'npm'
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
cache-dependency-path: ${{ matrix.folder }}/**/package-lock.json
- name: Build (npm)
if: matrix.kind == 'npm'
working-directory: ${{ matrix.folder }}
shell: bash
run: |
set -euo pipefail
# Every directory at depth 0 or 1 that holds a package.json is its own
# project: one folder may carry a single application or a set of them.
mapfile -t projects < <(
find . -maxdepth 2 -name package.json -not -path "*/node_modules/*" -printf '%h\n' \
| sort -u
)
if [ ${#projects[@]} -eq 0 ]; then
echo "::error::No package.json found in ${{ matrix.folder }}."
exit 1
fi
for p in "${projects[@]}"; do
echo "::group::${{ matrix.folder }}/${p#./} -- npm ci && npm run build"
(
cd "$p"
npm ci
npm run build
)
echo "::endgroup::"
done
# Stable, folder-independent name for branch protection to require -- the
# build-and-test job's displayed name varies with the matrix (one leg per
# changed folder), so it can't be set as a required check directly. This
# job always runs (even if earlier jobs are skipped) and only fails when a
# needed job actually failed or was cancelled; an empty build matrix (a PR
# touching no buildable folders) is a skip, not a failure, and passes here.
ci-result:
name: CI result
needs: [detect-changes, build-and-test]
if: always()
runs-on: ubuntu-latest
steps:
- name: Check required jobs
shell: bash
run: |
detect="${{ needs.detect-changes.result }}"
build="${{ needs.build-and-test.result }}"
echo "detect-changes: $detect"
echo "build-and-test: $build"
if [ "$detect" = "failure" ] || [ "$detect" = "cancelled" ] || [ "$build" = "failure" ] || [ "$build" = "cancelled" ]; then
echo "A required job failed or was cancelled."
exit 1
fi
echo "All required jobs passed (or were skipped)."