mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
75 lines
1.9 KiB
JavaScript
75 lines
1.9 KiB
JavaScript
// This script pushes new WPT results to wpt.fyi. When the `--ghstatus` flag is
|
|
// passed, will automatically add a status check to the commit with a link to
|
|
// the wpt.fyi page.
|
|
|
|
import { gzip } from "https://deno.land/x/compress@v0.4.1/gzip/mod.ts";
|
|
|
|
const user = Deno.env.get("WPT_FYI_USER");
|
|
const password = Deno.env.get("WPT_FYI_PW");
|
|
|
|
const fromRawFile = Deno.args.includes("--from-raw-file");
|
|
|
|
const form = new FormData();
|
|
form.set("labels", "master,actions");
|
|
|
|
if (fromRawFile) {
|
|
const file = Deno.args[0];
|
|
const raw = Deno.readFileSync(file);
|
|
const gzipped = gzip(raw);
|
|
form.set("result_file", new Blob([gzipped]));
|
|
} else {
|
|
const commit = Deno.args[0];
|
|
form.set(
|
|
"result_url",
|
|
`https://dl.deno.land/wpt/${commit}-wptreport.json.gz`,
|
|
);
|
|
}
|
|
|
|
const basicAuthToken = btoa(`${user}:${password}`);
|
|
|
|
const resp = await fetch("https://wpt.fyi/api/results/upload", {
|
|
method: "POST",
|
|
body: form,
|
|
headers: {
|
|
authorization: `Basic ${basicAuthToken}`,
|
|
},
|
|
});
|
|
|
|
console.log(resp.status);
|
|
console.log(resp.headers);
|
|
const body = await resp.text();
|
|
console.log(body);
|
|
|
|
if (!resp.ok) {
|
|
Deno.exit(1);
|
|
}
|
|
|
|
if (!fromRawFile && Deno.args.includes("--ghstatus")) {
|
|
const githubToken = Deno.env.get("GITHUB_TOKEN");
|
|
const taskId = body.split(" ")[1];
|
|
const url = `https://wpt.fyi/results/?run_id=${taskId}`;
|
|
const commit = Deno.args[0];
|
|
const resp = await fetch(
|
|
`https://api.github.com/repos/denoland/deno/statuses/${commit}`,
|
|
{
|
|
method: "POST",
|
|
body: JSON.stringify({
|
|
state: "success",
|
|
target_url: url,
|
|
context: "wpt.fyi",
|
|
description: "View WPT results on wpt.fyi",
|
|
}),
|
|
headers: {
|
|
authorization: `Bearer ${githubToken}`,
|
|
},
|
|
},
|
|
);
|
|
console.log(resp.status);
|
|
console.log(resp.headers);
|
|
const body2 = await resp.text();
|
|
console.log(body2);
|
|
|
|
if (!resp.ok) {
|
|
Deno.exit(1);
|
|
}
|
|
}
|