Skip to content

Commit 54d45da

Browse files
authored
i#7344: Skip format checks if DISABLE_FORMAT_CHECKS is present in commit messages. (#7361)
Skip clang-format, vera and tab checks if DISABLE_FORMAT_CHECKS appears in one of the commit messages. This feature enables us to copy code over without format changes as a base line and use subsequent PRs to fix format issues. And it is useful to add .patch files or other files where tabs are part of the format. Format checks can also be disabled by setting DISABLE_FORMAT_CHECKS to ON, for example, cmake -DDISABLE_FORMAT_CHECKS=ON ... Test: I added DISABLE_FORMAT_CHECKS as part of a commit message to #7304 and verified format checks were disabled except aarch64 build. "gh api" is not installed on the aarchxx machines. Adding "gh" to the install list didn't work, and manually installing gh or github-cli failed using tmate. I have added a TODO in .github/workflows/ci-aarchxx.yml to add the support once "gh api" is installed. The original PR #7345 was reverted because github.event.pull_request._links.commits.href is absent in case of push/merge. This PR handles the push/merge case by using ``` if ${{ contains(toJSON(github.event.commits.*.message), 'DISABLE_FORMAT_CHECKS') }} ``` for push. Test: - I added DISABLE_FORMAT_CHECKS as part of a commit message in a clone repository, ivankyluk/dynamorio, to verify format checks were disable when DISABLE_FORMAT_CHECKS was added as a commit message. And formats checks were enabled when DISABLE_FORMAT_CHECKS was absent. - I used the cloned repository to test the push/merge event. Issue: #7344
1 parent 31ad294 commit 54d45da

File tree

11 files changed

+260
-63
lines changed

11 files changed

+260
-63
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# **********************************************************
2+
# Copyright (c) 2025 Google, Inc. All rights reserved.
3+
# **********************************************************
4+
5+
# Redistribution and use in source and binary forms, with or without
6+
# modification, are permitted provided that the following conditions are met:
7+
#
8+
# * Redistributions of source code must retain the above copyright notice,
9+
# this list of conditions and the following disclaimer.
10+
#
11+
# * Redistributions in binary form must reproduce the above copyright notice,
12+
# this list of conditions and the following disclaimer in the documentation
13+
# and/or other materials provided with the distribution.
14+
#
15+
# * Neither the name of Google, Inc. nor the names of its contributors may be
16+
# used to endorse or promote products derived from this software without
17+
# specific prior written permission.
18+
#
19+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
# ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE
23+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27+
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28+
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
29+
# DAMAGE.
30+
31+
# Check if DISABLE_FORMAT_CHECKS appears in the PR commit messages.
32+
# Set disable_format_checks to "yes" if it does, "no" otherwise.
33+
outputs:
34+
disable_format_checks:
35+
description: |
36+
'disable_format_checks is set to yes if format checks are disabled.'
37+
value: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
38+
39+
runs:
40+
using: composite
41+
steps:
42+
- uses: actions/checkout@v4
43+
- id: are_format_checks_disabled
44+
name: Check if format checks are disabled.
45+
env:
46+
GH_TOKEN: ${{ github.token }}
47+
GITHUB_REPOSITORY: ${{ github.repository }}
48+
run: |
49+
found=no
50+
if ${{ github.event_name == 'pull_request' }}; then
51+
commit_messages="$(gh api '${{ github.event.pull_request._links.commits.href }}' --paginate --jq .[].commit.message)"
52+
if echo "$commit_messages" | grep -q "DISABLE_FORMAT_CHECKS"; then
53+
found=yes
54+
fi
55+
elif ${{ github.event_name == 'push' }}; then
56+
if ${{ contains(toJSON(github.event.commits.*.message), 'DISABLE_FORMAT_CHECKS') }}; then
57+
found=yes
58+
fi
59+
fi
60+
if [[ "$found" == "yes" ]]; then
61+
echo "disable_format_checks=yes" >> $GITHUB_OUTPUT
62+
echo "format checks are disabled."
63+
else
64+
echo "disable_format_checks=no" >> $GITHUB_OUTPUT
65+
echo "format checks are enabled."
66+
fi
67+
shell: bash

.github/workflows/ci-aarchxx-cross.yml

+25
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,18 @@ jobs:
9494
with:
9595
cmakeVersion: '3.26.4'
9696

97+
- name: Check if format checks are disabled
98+
id: are_format_checks_disabled
99+
uses: ./.github/actions/are-format-checks-disabled
100+
97101
- name: Run Suite
98102
working-directory: ${{ github.workspace }}
99103
run: ./suite/runsuite_wrapper.pl automated_ci 64_only
100104
env:
101105
DYNAMORIO_CROSS_AARCHXX_LINUX_ONLY: yes
102106
CI_TRIGGER: ${{ github.event_name }}
103107
CI_BRANCH: ${{ github.ref }}
108+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
104109

105110
# ARM cross-compile with gcc, with some tests run under QEMU.
106111
# We use a more recent Ubuntu for a more recent QEMU.
@@ -143,13 +148,18 @@ jobs:
143148
with:
144149
cmakeVersion: '3.26.4'
145150

151+
- name: Check if format checks are disabled
152+
id: are_format_checks_disabled
153+
uses: ./.github/actions/are-format-checks-disabled
154+
146155
- name: Run Suite
147156
working-directory: ${{ github.workspace }}
148157
run: ./suite/runsuite_wrapper.pl automated_ci 32_only
149158
env:
150159
DYNAMORIO_CROSS_AARCHXX_LINUX_ONLY: yes
151160
CI_TRIGGER: ${{ github.event_name }}
152161
CI_BRANCH: ${{ github.ref }}
162+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
153163

154164
# Android ARM cross-compile with gcc, no tests:
155165
android-arm-cross-compile:
@@ -190,13 +200,18 @@ jobs:
190200
with:
191201
cmakeVersion: '3.26.4'
192202

203+
- name: Check if format checks are disabled
204+
id: are_format_checks_disabled
205+
uses: ./.github/actions/are-format-checks-disabled
206+
193207
- name: Run Suite
194208
working-directory: ${{ github.workspace }}
195209
env:
196210
DYNAMORIO_CROSS_ANDROID_ONLY: yes
197211
DYNAMORIO_ANDROID_TOOLCHAIN: /tmp/android-gcc-arm-ndk-10e
198212
CI_TRIGGER: ${{ github.event_name }}
199213
CI_BRANCH: ${{ github.ref }}
214+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
200215
run: ./suite/runsuite_wrapper.pl automated_ci 32_only
201216

202217
# Android AArch64 cross-compile with LLVM, no tests:
@@ -231,6 +246,10 @@ jobs:
231246
with:
232247
cmakeVersion: '3.26.4'
233248

249+
- name: Check if format checks are disabled
250+
id: are_format_checks_disabled
251+
uses: ./.github/actions/are-format-checks-disabled
252+
234253
- name: Run Suite
235254
working-directory: ${{ github.workspace }}
236255
env:
@@ -239,6 +258,7 @@ jobs:
239258
DYNAMORIO_ANDROID_API_LEVEL: 35
240259
CI_TRIGGER: ${{ github.event_name }}
241260
CI_BRANCH: ${{ github.ref }}
261+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
242262
run: ./suite/runsuite_wrapper.pl automated_ci 64_only
243263

244264
# AArch64 drdecode and drmemtrace on x86:
@@ -269,13 +289,18 @@ jobs:
269289
with:
270290
cmakeVersion: '3.26.4'
271291

292+
- name: Check if format checks are disabled
293+
id: are_format_checks_disabled
294+
uses: ./.github/actions/are-format-checks-disabled
295+
272296
- name: Run Suite
273297
working-directory: ${{ github.workspace }}
274298
run: ./suite/runsuite_wrapper.pl automated_ci
275299
env:
276300
DYNAMORIO_A64_ON_X86_ONLY: yes
277301
CI_TRIGGER: ${{ github.event_name }}
278302
CI_BRANCH: ${{ github.ref }}
303+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
279304

280305
send-failure-notification:
281306
uses: ./.github/workflows/failure-notification.yml

.github/workflows/ci-aarchxx.yml

+2
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ jobs:
118118
with:
119119
cmakeVersion: '3.26.4'
120120

121+
# TODO i#7344: Check if we should skip clang format checks and vera tests
122+
# after gh api is installed.
121123
- name: Run Suite
122124
working-directory: build
123125
run: ../suite/runsuite_wrapper.pl travis

.github/workflows/ci-clang-format.yml

+5
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,13 @@ jobs:
8181
sudo apt-get -y install doxygen vera++ zlib1g-dev libsnappy-dev \
8282
liblz4-dev clang-format-14 libunwind-dev
8383
84+
- name: Check if format checks are disabled
85+
id: are_format_checks_disabled
86+
uses: ./.github/actions/are-format-checks-disabled
87+
8488
- name: Run Suite
8589
working-directory: ${{ github.workspace }}
90+
if: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks != 'yes' }}
8691
run: ./suite/runsuite_wrapper.pl automated_ci 64_only require_format
8792
env:
8893
DYNAMORIO_CROSS_AARCHXX_LINUX_ONLY: no

.github/workflows/ci-osx.yml

+5
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ jobs:
7676
run: |
7777
brew install nasm zlib snappy lz4
7878
79+
- name: Check if format checks are disabled
80+
id: are_format_checks_disabled
81+
uses: ./.github/actions/are-format-checks-disabled
82+
7983
- name: Run Suite
8084
working-directory: ${{ github.workspace }}
8185
run: ./suite/runsuite_wrapper.pl automated_ci 64_only
@@ -89,6 +93,7 @@ jobs:
8993
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer
9094
CI_TRIGGER: ${{ github.event_name }}
9195
CI_BRANCH: ${{ github.ref }}
96+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
9297

9398
send-failure-notification:
9499
uses: ./.github/workflows/failure-notification.yml

.github/workflows/ci-riscv64.yml

+5
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ jobs:
9696
sudo rsync -av ../extract/lib/riscv64-linux-gnu/ /usr/riscv64-linux-gnu/lib/; \
9797
fi
9898
99+
- name: Check if format checks are disabled
100+
id: are_format_checks_disabled
101+
uses: ./.github/actions/are-format-checks-disabled
102+
99103
- name: Run Suite
100104
working-directory: ${{ github.workspace }}
101105
run: ./suite/runsuite_wrapper.pl automated_ci 64_only
@@ -104,6 +108,7 @@ jobs:
104108
CI_TRIGGER: ${{ github.event_name }}
105109
CI_BRANCH: ${{ github.ref }}
106110
QEMU_LD_PREFIX: /usr/riscv64-linux-gnu/
111+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
107112

108113
send-failure-notification:
109114
uses: ./.github/workflows/failure-notification.yml

.github/workflows/ci-windows.yml

+15
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ jobs:
8383
md c:\projects\install
8484
(New-Object System.Net.WebClient).DownloadFile("https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip", "c:\projects\install\ninja.zip")
8585
86+
- name: Check if format checks are disabled
87+
id: are_format_checks_disabled
88+
uses: ./.github/actions/are-format-checks-disabled
89+
8690
- name: Run Suite
8791
working-directory: ${{ github.workspace }}
8892
run: |
@@ -97,6 +101,7 @@ jobs:
97101
env:
98102
CI_TRIGGER: ${{ github.event_name }}
99103
CI_BRANCH: ${{ github.ref }}
104+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
100105

101106
###########################################################################
102107
# 64-bit VS2019 and tests:
@@ -126,6 +131,10 @@ jobs:
126131
md c:\projects\install
127132
(New-Object System.Net.WebClient).DownloadFile("https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip", "c:\projects\install\ninja.zip")
128133
134+
- name: Check if format checks are disabled
135+
id: are_format_checks_disabled
136+
uses: ./.github/actions/are-format-checks-disabled
137+
129138
- name: Run Suite
130139
working-directory: ${{ github.workspace }}
131140
run: |
@@ -140,6 +149,7 @@ jobs:
140149
env:
141150
CI_TRIGGER: ${{ github.event_name }}
142151
CI_BRANCH: ${{ github.ref }}
152+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
143153

144154
###########################################################################
145155
# 32-bit and 64-bit VS2019 release builds:
@@ -169,6 +179,10 @@ jobs:
169179
md c:\projects\install
170180
(New-Object System.Net.WebClient).DownloadFile("https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip", "c:\projects\install\ninja.zip")
171181
182+
- name: Check if format checks are disabled
183+
id: are_format_checks_disabled
184+
uses: ./.github/actions/are-format-checks-disabled
185+
172186
- name: Run Suite
173187
working-directory: ${{ github.workspace }}
174188
run: |
@@ -183,6 +197,7 @@ jobs:
183197
env:
184198
CI_TRIGGER: ${{ github.event_name }}
185199
CI_BRANCH: ${{ github.ref }}
200+
DISABLE_FORMAT_CHECKS: ${{ steps.are_format_checks_disabled.outputs.disable_format_checks }}
186201

187202
send-failure-notification:
188203
uses: ./.github/workflows/failure-notification.yml

0 commit comments

Comments
 (0)