diff options
| author | Luca Casonato <hello@lcas.dev> | 2021-06-14 13:48:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-14 13:48:57 +0200 |
| commit | d837445e44c9ed5c29901813d73818f84e97b294 (patch) | |
| tree | da40539191c48bee852b7b500f070558db00307e /tools/wpt/runner.ts | |
| parent | a6f1edd9533ae52f6d7c4841c395a34021dbdb71 (diff) | |
build: add wpt epoch/daily run (#10937)
This adds a daily scheduled CI pipeline that runs WPT tests against
the most recent epochs/daily every night. Results are uploaded to
wpt.fyi.
WPTs are run on all supported platforms, on both stable and canary.
Diffstat (limited to 'tools/wpt/runner.ts')
| -rw-r--r-- | tools/wpt/runner.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/wpt/runner.ts b/tools/wpt/runner.ts index 0cf625f01..3eb476fc9 100644 --- a/tools/wpt/runner.ts +++ b/tools/wpt/runner.ts @@ -1,6 +1,6 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. import { delay, join, readLines, ROOT_PATH, toFileUrl } from "../util.js"; -import { assert, ManifestTestOptions, release, runPy } from "./utils.ts"; +import { assert, denoBinary, ManifestTestOptions, runPy } from "./utils.ts"; import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.3-alpha2/deno-dom-wasm.ts"; export async function runWithTestUtil<T>( @@ -88,7 +88,7 @@ export async function runSingleTest( const proc = Deno.run({ cmd: [ - join(ROOT_PATH, `./target/${release ? "release" : "debug"}/deno`), + denoBinary(), "run", "-A", "--unstable", |
