Skip to content

Commit 2c84244

Browse files
ci: Send email if the reproducible build process fails
Changelog-None.
1 parent ebebb81 commit 2c84244

File tree

1 file changed

+110
-38
lines changed

1 file changed

+110
-38
lines changed

.github/workflows/repro.yml

+110-38
Original file line numberDiff line numberDiff line change
@@ -17,61 +17,133 @@ jobs:
1717
version: ['focal', 'jammy', 'noble']
1818
steps:
1919
- name: Git checkout
20+
id: repo_chackout
2021
uses: actions/checkout@v4
2122

2223
- name: Build environment setup
24+
id: environment_setup
25+
shell: bash
2326
run: |
24-
echo "Building base image for ${{ matrix.version }}"
25-
sudo docker run --rm -v $(pwd):/build ubuntu:${{ matrix.version }} bash -c "\
26-
apt-get update && \
27-
apt-get install -y debootstrap && \
28-
debootstrap ${{ matrix.version }} /build/${{ matrix.version }}"
29-
sudo tar -C ${{ matrix.version }} -c . | docker import - ${{ matrix.version }}
27+
{
28+
echo "STEP=Build environment setup" >> "$GITHUB_ENV"
29+
echo "Building base image for ${{ matrix.version }}"
30+
sudo docker run --rm -v $(pwd):/build ubuntu:${{ matrix.version }} bash -c "\
31+
apt-get update && \
32+
apt-get install -y debootstrap && \
33+
debootstrap ${{ matrix.version }} /build/${{ matrix.version }}"
34+
sudo tar -C ${{ matrix.version }} -c . | docker import - ${{ matrix.version }}
35+
} > command.log 2>&1 || {
36+
echo "ERROR<<EOF" >> "$GITHUB_ENV"
37+
echo "$(cat command.log)" >> "$GITHUB_ENV"
38+
echo "EOF" >> "$GITHUB_ENV"
39+
exit 1
40+
}
3041
3142
- name: Builder image setup
32-
run: docker build -t cl-repro-${{ matrix.version }} - < contrib/reprobuild/Dockerfile.${{ matrix.version }}
43+
id: builder_image_setup
44+
shell: bash
45+
run: |
46+
{
47+
echo "STEP=Builder image setup" >> "$GITHUB_ENV"
48+
docker build -t cl-repro-${{ matrix.version }} - < contrib/reprobuild/Dockerfile.${{ matrix.version }}
49+
} > command.log 2>&1 || {
50+
echo "ERROR<<EOF" >> "$GITHUB_ENV"
51+
echo "$(cat command.log)" >> "$GITHUB_ENV"
52+
echo "EOF" >> "$GITHUB_ENV"
53+
exit 1
54+
}
3355
3456
- name: Build reproducible image and store Git state
57+
id: repro_image_setup
58+
shell: bash
3559
run: |
36-
# Create repro directory.
37-
mkdir $GITHUB_WORKSPACE/repro
60+
{
61+
echo "STEP=Build reproducible image and store Git state" >> "$GITHUB_ENV"
3862
39-
# Perform the repro build.
40-
docker run --name cl-build -v $GITHUB_WORKSPACE:/repo -e FORCE_MTIME=$(date +%F) -t cl-repro-${{ matrix.version }}
63+
# Create repro directory.
64+
mkdir $GITHUB_WORKSPACE/repro
4165
42-
# Commit the image in order to inspect the build later.
43-
docker commit cl-build cl-repro
66+
# Perform the repro build.
67+
docker run --name cl-build -v $GITHUB_WORKSPACE:/repo -e FORCE_MTIME=$(date +%F) -t cl-repro-${{ matrix.version }}
4468
45-
# Inspect the version.
46-
docker run --rm -v $GITHUB_WORKSPACE:/repo -t cl-repro bash -c "make version > /repo/repro/version.txt"
69+
# Commit the image in order to inspect the build later.
70+
docker commit cl-build cl-repro
4771
48-
# Inspect the Git tree state.
49-
docker run --rm -v $GITHUB_WORKSPACE:/repo -t cl-repro bash -c "\
50-
git --no-pager status > /repo/repro/git.log && \
51-
git --no-pager diff >> /repo/repro/git.log"
72+
# Inspect the version.
73+
docker run --rm -v $GITHUB_WORKSPACE:/repo -t cl-repro bash -c "make version > /repo/repro/version.txt"
5274
53-
# Change permissions on the repro files for access by the runner environment.
54-
sudo chown -R runner $GITHUB_WORKSPACE/repro
75+
# Inspect the Git tree state.
76+
docker run --rm -v $GITHUB_WORKSPACE:/repo -t cl-repro bash -c "\
77+
git --no-pager status > /repo/repro/git.log && \
78+
git --no-pager diff >> /repo/repro/git.log"
79+
80+
# Change permissions on the repro files for access by the runner environment.
81+
sudo chown -R runner $GITHUB_WORKSPACE/repro
82+
} > command.log 2>&1 || {
83+
echo "ERROR<<EOF" >> "$GITHUB_ENV"
84+
echo "$(cat command.log)" >> "$GITHUB_ENV"
85+
echo "EOF" >> "$GITHUB_ENV"
86+
exit 1
87+
}
5588
5689
- name: Assert clean version
90+
id: assert_version
91+
shell: bash
5792
run: |
58-
echo 'Version:'
59-
cat repro/version.txt
60-
echo -e
61-
62-
reprofile=$(ls repro/clightning-*)
63-
echo 'Repro file:'
64-
ls -al repro/clightning-*
65-
echo -e
93+
{
94+
echo "STEP=Assert clean version" >> "$GITHUB_ENV"
95+
echo 'Version:'
96+
cat repro/version.txt
97+
echo -e
6698
67-
if [ -n "$(cat repro/version.txt | sed -n '/-modded/p')" ] || \
68-
[ -n "$(echo $reprofile | sed -n '/-modded/p')" ]
69-
then
70-
echo "Git Status and Diff:"
71-
cat repro/git.log
99+
reprofile=$(ls repro/clightning-*)
100+
echo 'Repro file:'
101+
ls -al repro/clightning-*
72102
echo -e
73-
echo 'Error: Repository modded / dirty tree.'
103+
104+
if [ -n "$(cat repro/version.txt | sed -n '/-modded/p')" ] || \
105+
[ -n "$(echo $reprofile | sed -n '/-modded/p')" ]
106+
then
107+
echo "Git Status and Diff:"
108+
cat repro/git.log
109+
echo -e
110+
echo 'Error: Repository modded / dirty tree.'
111+
exit 1
112+
else
113+
echo 'Success! Clean Build.'
114+
fi
115+
} > command.log 2>&1 || {
116+
echo "ERROR<<EOF" >> "$GITHUB_ENV"
117+
echo "$(cat command.log)" >> "$GITHUB_ENV"
118+
echo "EOF" >> "$GITHUB_ENV"
74119
exit 1
75-
else
76-
echo 'Success! Clean Build.'
77-
fi
120+
}
121+
122+
- name: Send email on failure
123+
id: send_email
124+
if: ${{ failure() }}
125+
uses: dawidd6/action-send-mail@v3
126+
with:
127+
server_address: smtp.gmail.com
128+
server_port: 587
129+
username: ${{ secrets.EMAIL_USERNAME }}
130+
password: ${{ secrets.EMAIL_PASSWORD }}
131+
from: ${{ secrets.EMAIL_USERNAME }}
132+
to: ${{ vars.DISTRIBUTION_LIST }}
133+
subject: "CI Failure: Step ${{ env.STEP }} failed for distro ${{ matrix.version }}"
134+
convert_markdown: true
135+
html_body: |
136+
<html>
137+
<body>
138+
<p><strong>Failure Details:</strong></p>
139+
<ul>
140+
<li><strong>Workflow:</strong> ${{ github.workflow }}</li>
141+
<li><strong>Event:</strong> ${{ github.event_name }}</li>
142+
<li><strong>Job:</strong> ${{ github.job }}</li>
143+
<li><strong>Distro:</strong> ${{ matrix.version }}</li>
144+
<li><strong>Step:</strong> ${{ env.STEP }}</li>
145+
<li><strong>URL:</strong> <a href="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}">${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}</a></li>
146+
<li><strong>Reason:</strong> <pre>${{ env.ERROR }}</pre></li>
147+
</ul>
148+
</body>
149+
</html>

0 commit comments

Comments
 (0)