diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-08-08 20:10:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 03:10:19 +0800 |
commit | e2237d8cd26e27a284c6a564762345e84a365dae (patch) | |
tree | f86a908f0bbfcb82aaa7dc4e9beb49183a54cbf9 /test/ufuzz/actions.js | |
parent | 91f078fe35535a920230420bb9fbaf9626a3ebc4 (diff) | |
download | tracifyjs-e2237d8cd26e27a284c6a564762345e84a365dae.tar.gz tracifyjs-e2237d8cd26e27a284c6a564762345e84a365dae.zip |
improve `ufuzz` duty cycle heuristic (#4045)
Diffstat (limited to 'test/ufuzz/actions.js')
-rw-r--r-- | test/ufuzz/actions.js | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/ufuzz/actions.js b/test/ufuzz/actions.js index c4438d8d..53754a75 100644 --- a/test/ufuzz/actions.js +++ b/test/ufuzz/actions.js @@ -22,28 +22,28 @@ function read(url, callback) { }); } -var in_progress = 0, queued = 0; +var queued = 0, total = 0; +var earliest, latest; process.on("beforeExit", function() { if (queued > 3) { process.stdout.write("0"); + } else if (total < 2) { + process.stdout.write("3600000"); } else { - process.stdout.write(Math.min(1000 * 20 / in_progress, 1500).toFixed(0)); + process.stdout.write(Math.min(20 * (latest - earliest) / (total - 1), 5400000).toFixed(0)); } }); -read(base + "/actions/workflows/ufuzz.yml/runs", function(reply) { +read(base + "/actions/workflows/ufuzz.yml/runs?event=schedule", function(reply) { reply.workflow_runs.filter(function(workflow) { return /^(in_progress|queued|)$/.test(workflow.status); }).forEach(function(workflow) { read(workflow.jobs_url, function(reply) { reply.jobs.forEach(function(job) { - switch (job.status) { - case "in_progress": - in_progress++; - break; - case "queued": - queued++; - break; - } + if (job.status == "queued") queued++; + total++; + var start = new Date(job.started_at); + if (!(earliest < start)) earliest = start; + if (!(latest > start)) latest = start; }); }); }); |