Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions zorg/buildbot/builders/BOLTBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def getBOLTCmakeBuildFactory(
boltOld = "bin/llvm-bolt.old"

f.addSteps([
# Cleanup binaries and markers from previous NFC-mode runs.
# Cleanup old/new binaries and markers from previous NFC-mode runs.
ShellCommand(
name='clean-nfc-check',
command=(
Expand All @@ -114,7 +114,9 @@ def getBOLTCmakeBuildFactory(
haltOnFailure=False,
flunkOnFailure=False,
env=env),
# Build the current and previous revision of llvm-bolt.
# Build the current and previous revision of llvm-bolt as
# llvm-bolt.new and llvm-bolt.old. Also, creates a marker to force
# in-tree tests in case additional source code changes are detected.
ShellCommand(
name='nfc-check-setup',
command=[
Expand All @@ -130,6 +132,18 @@ def getBOLTCmakeBuildFactory(
haltOnFailure=False,
flunkOnFailure=False,
env=env),
# Verify that the llvm-bolt binary can report its version within a
# reasonable amount of time.
ShellCommand(
name='llvm-bolt-version-check',
command=(f"{boltNew} --version"),
description=('Check that llvm-bolt binary passes a simple test'
'before proceeding with testing.'),
descriptionDone=["llvm-bolt --version"],
haltOnFailure=True,
flunkOnFailure=True,
maxTime=30,
env=env),
# Validate that NFC-mode comparison is meaningful by checking:
# - the old and new binaries exist
# - no unique IDs are embedded in the binaries
Expand All @@ -154,6 +168,7 @@ def getBOLTCmakeBuildFactory(
haltOnFailure=False,
warnOnFailure=True,
warnOnWarnings=True,
maxTime=30,
decodeRC={0: SUCCESS, 1: FAILURE, 2: WARNINGS},
descriptionDone=["NFC-Mode Validation"],
env=env),
Expand All @@ -174,10 +189,12 @@ def getBOLTCmakeBuildFactory(
haltOnFailure=False,
env=env),
# Run in-tree tests if the llvm-bolt binary has changed, or if
# relevant source code changes are detected.
# relevant source code changes are detected. Lower scheduling
# priority with nice to reduce CPU contention in virtualized
# environments. This step relinks the llvm-bolt binary if needed.
LitTestCommand(
name='nfc-check-bolt',
command=["ninja", "check-bolt"],
command=("nice -n 5 ninja check-bolt"),
description=["running", "NFC", "check-bolt"],
descriptionDone=["NFC", "check-bolt", "completed"],
warnOnFailure=True,
Expand All @@ -186,10 +203,10 @@ def getBOLTCmakeBuildFactory(
doStepIf=FileDoesNotExist(f"build/{skipInTree}"),
env=env),
# Run out-of-tree large tests if the llvm-bolt binary has changed.
# Lower scheduling priority, as above.
LitTestCommand(
name='nfc-check-large-bolt',
command=['bin/llvm-lit', '-sv', '-j2',
'tools/bolttests'],
command=('nice -n 5 bin/llvm-lit -v -j2 tools/bolttests'),
description=["running", "NFC", "check-large-bolt"],
descriptionDone=["NFC", "check-large-bolt", "completed"],
warnOnFailure=True,
Expand Down