-
Notifications
You must be signed in to change notification settings - Fork 1.2k
150 lines (132 loc) · 4.97 KB
/
Copy pathpr-build.yml
File metadata and controls
150 lines (132 loc) · 4.97 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
# 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. 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
# Folder may have been deleted in this PR -- skip if no .sln remains at HEAD.
if ! compgen -G "$f"/*.sln > /dev/null 2>&1; then
echo "::notice::Skipping '$f' -- no .sln at HEAD (deleted or restructured)."
continue
fi
entries=$(jq -c --arg folder "$f" '. + [{folder: $folder}]' <<<"$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
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
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
# 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)."