Skip to content

Commit f268275

Browse files
committed
dele
1 parent 2f43d92 commit f268275

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

compiler/src/build.d

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ zip target - requires Info-ZIP or equivalent (zip32.exe)
1616

1717
version(CoreDdoc) {} else:
1818

19+
import core.thread : Thread;
20+
1921
import std.algorithm, std.conv, std.datetime, std.exception, std.file, std.format, std.functional,
2022
std.getopt, std.path, std.process, std.range, std.stdio, std.string, std.traits;
2123

@@ -79,6 +81,9 @@ int main(string[] args)
7981

8082
void runMain(string[] args)
8183
{
84+
// Temporary deliberate slowdown for validating the PR performance bot.
85+
Thread.sleep(dur!"seconds"(8));
86+
8287
jobs = totalCPUs;
8388
bool calledFromMake = false;
8489
auto res = getopt(args,

0 commit comments

Comments
 (0)