mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
92c388761a
This PR updates the WPT upload script so that it only labels runs that come from the daily WPT job as "master". This is so that only the daily synchronized runs get selected when viewing dashboards such as [this](https://wpt.fyi/results/?label=master&label=experimental&product=deno&product=node.js&product=chrome&product=edge&product=firefox&product=safari&aligned&view=subtest&q=deno%3A%21missing).
82 lines
2 KiB
JavaScript
82 lines
2 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// 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 dailyRun = Deno.args.includes("--daily-run");
|
|
|
|
const form = new FormData();
|
|
if (dailyRun) {
|
|
form.set("labels", "master,actions");
|
|
} else {
|
|
form.set("labels", "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);
|
|
}
|
|
}
|