aboutsummaryrefslogtreecommitdiff
path: root/test/ufuzz/actions.js
blob: fa4431a7f4ca8a85a271f879c297489ab1efe994 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require("../../tools/exit");

var get = require("https").get;
var parse = require("url").parse;
var base = process.argv[2];
var token = process.argv[3];

function read(url, callback) {
    var options = parse(url);
    options.headers = {
        "Authorization": "Token " + token,
        "User-Agent": "UglifyJS",
    };
    get(options, function(response) {
        var chunks = [];
        response.setEncoding("utf8");
        response.on("data", function(chunk) {
            chunks.push(chunk);
        }).on("end", function() {
            callback(JSON.parse(chunks.join("")));
        });
    });
}

var queued = 0, total = 0, earliest, now = Date.now();
process.on("beforeExit", function() {
    if (queued > 3) {
        process.stdout.write("0");
    } else if (now - earliest > 0 && total > 1) {
        process.stdout.write(Math.min(20 * (now - earliest) / (total - 1), 18000000).toFixed(0));
    } else {
        process.stdout.write("3600000");
    }
});
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) {
                if (job.status == "queued") queued++;
                total++;
                if (!job.started_at) return;
                var start = new Date(job.started_at);
                if (!(earliest < start)) earliest = start;
            });
        });
    });
});