mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
cff6e280c7
Some checks are pending
ci / pre-build (push) Waiting to run
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (aarch64, test, linux, debug, ubicloud-standard-16-arm) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (aarch64, test, linux, release, ubicloud-standard-16-arm, true) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (aarch64, test, macos, debug, ${{ github.repository == 'denoland/deno' && startsWith(github.ref, 'refs/tags/') && 'self-hosted' || 'macos-14' }}) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (aarch64, test, macos, release, ${{ (!contains(github.event.pull_request.labels.*.name, 'ci-full') && (github.event_name == 'pull_request')) && 'ubuntu-24.04' || github.reposit… (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, bench, linux, release, ${{ (!contains(github.event.pull_request.labels.*.name, 'ci-full') && (github.event_name == 'pull_request' && !contains(github.event.pull_reques… (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, lint, linux, debug, ubuntu-24.04) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, lint, macos, debug, macos-13) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, lint, windows, debug, windows-2022) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, test, linux, debug, ubuntu-24.04, true) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, test, linux, release, ${{ github.repository == 'denoland/deno' && 'ubuntu-24.04-xl' || 'ubuntu-24.04' }}, true, ${{ !startsWith(github.ref, 'refs/tags/') }}) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, test, macos, debug, macos-13) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, test, macos, release, ${{ (!contains(github.event.pull_request.labels.*.name, 'ci-full') && (github.event_name == 'pull_request')) && 'ubuntu-24.04' || 'macos-13' }}, … (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, test, windows, debug, windows-2022) (push) Blocked by required conditions
ci / ${{ matrix.job }} ${{ matrix.profile }} ${{ matrix.os }}-${{ matrix.arch }} (x86_64, test, windows, release, ${{ (!contains(github.event.pull_request.labels.*.name, 'ci-full') && (github.event_name == 'pull_request')) && 'ubuntu-24.04' || github.reposi… (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Closes #26425 ## Overview This PR adds support for specifying multiple environment files as arguments when using the Deno CLI. Subsequent files override pre-existing variables defined in previous files. If the same variable is defined in the environment and in the file, the value from the environment takes precedence. ## Example Usage ```bash deno run --allow-env --env-file --env-file=".env.one" --env-file=".env.two" script.ts ``` --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
252 lines
6.7 KiB
JavaScript
Executable File
252 lines
6.7 KiB
JavaScript
Executable File
#!/usr/bin/env -S deno run --allow-all --config=tests/config/deno.json
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// deno-lint-ignore-file no-console
|
|
|
|
import { buildMode, getPrebuilt, getSources, join, ROOT_PATH } from "./util.js";
|
|
import { checkCopyright } from "./copyright_checker.js";
|
|
import * as ciFile from "../.github/workflows/ci.generate.ts";
|
|
|
|
const promises = [];
|
|
|
|
let js = Deno.args.includes("--js");
|
|
let rs = Deno.args.includes("--rs");
|
|
if (!js && !rs) {
|
|
js = true;
|
|
rs = true;
|
|
}
|
|
|
|
if (rs) {
|
|
promises.push(clippy());
|
|
}
|
|
|
|
if (js) {
|
|
promises.push(dlint());
|
|
promises.push(dlintPreferPrimordials());
|
|
promises.push(ensureCiYmlUpToDate());
|
|
promises.push(ensureNoNewITests());
|
|
|
|
if (rs) {
|
|
promises.push(checkCopyright());
|
|
}
|
|
}
|
|
|
|
const results = await Promise.allSettled(promises);
|
|
for (const result of results) {
|
|
if (result.status === "rejected") {
|
|
console.error(result.reason);
|
|
Deno.exit(1);
|
|
}
|
|
}
|
|
|
|
async function dlint() {
|
|
const configFile = join(ROOT_PATH, ".dlint.json");
|
|
const execPath = await getPrebuilt("dlint");
|
|
|
|
const sourceFiles = await getSources(ROOT_PATH, [
|
|
"*.js",
|
|
"*.ts",
|
|
":!:.github/mtime_cache/action.js",
|
|
":!:cli/bench/testdata/npm/*",
|
|
":!:cli/bench/testdata/express-router.js",
|
|
":!:cli/bench/testdata/react-dom.js",
|
|
":!:cli/compilers/wasm_wrap.js",
|
|
":!:cli/tsc/dts/**",
|
|
":!:cli/tsc/*typescript.js",
|
|
":!:cli/tsc/compiler.d.ts",
|
|
":!:runtime/examples/",
|
|
":!:target/",
|
|
":!:tests/ffi/tests/test.js",
|
|
":!:tests/registry/**",
|
|
":!:tests/specs/**",
|
|
":!:tests/testdata/**",
|
|
":!:tests/unit_node/testdata/**",
|
|
":!:tests/wpt/runner/**",
|
|
":!:tests/wpt/suite/**",
|
|
]);
|
|
|
|
if (!sourceFiles.length) {
|
|
return;
|
|
}
|
|
|
|
const chunks = splitToChunks(sourceFiles, `${execPath} run`.length);
|
|
const pending = [];
|
|
for (const chunk of chunks) {
|
|
const cmd = new Deno.Command(execPath, {
|
|
cwd: ROOT_PATH,
|
|
args: ["run", "--config=" + configFile, ...chunk],
|
|
// capture to not conflict with clippy output
|
|
stderr: "piped",
|
|
});
|
|
pending.push(
|
|
cmd.output().then(({ stderr, code }) => {
|
|
if (code > 0) {
|
|
const decoder = new TextDecoder();
|
|
console.log("\n------ dlint ------");
|
|
console.log(decoder.decode(stderr));
|
|
throw new Error("dlint failed");
|
|
}
|
|
}),
|
|
);
|
|
}
|
|
const results = await Promise.allSettled(pending);
|
|
for (const result of results) {
|
|
if (result.status === "rejected") {
|
|
throw new Error(result.reason);
|
|
}
|
|
}
|
|
}
|
|
|
|
// `prefer-primordials` has to apply only to files related to bootstrapping,
|
|
// which is different from other lint rules. This is why this dedicated function
|
|
// is needed.
|
|
async function dlintPreferPrimordials() {
|
|
const execPath = await getPrebuilt("dlint");
|
|
const sourceFiles = await getSources(ROOT_PATH, [
|
|
"runtime/**/*.js",
|
|
"runtime/**/*.ts",
|
|
"ext/**/*.js",
|
|
"ext/**/*.ts",
|
|
":!:ext/**/*.d.ts",
|
|
"ext/node/polyfills/*.mjs",
|
|
]);
|
|
|
|
if (!sourceFiles.length) {
|
|
return;
|
|
}
|
|
|
|
const chunks = splitToChunks(sourceFiles, `${execPath} run`.length);
|
|
for (const chunk of chunks) {
|
|
const cmd = new Deno.Command(execPath, {
|
|
cwd: ROOT_PATH,
|
|
args: ["run", "--rule", "prefer-primordials", ...chunk],
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
});
|
|
const { code } = await cmd.output();
|
|
|
|
if (code > 0) {
|
|
throw new Error("prefer-primordials failed");
|
|
}
|
|
}
|
|
}
|
|
|
|
function splitToChunks(paths, initCmdLen) {
|
|
let cmdLen = initCmdLen;
|
|
const MAX_COMMAND_LEN = 30000;
|
|
const chunks = [[]];
|
|
for (const p of paths) {
|
|
if (cmdLen + p.length > MAX_COMMAND_LEN) {
|
|
chunks.push([p]);
|
|
cmdLen = initCmdLen;
|
|
} else {
|
|
chunks[chunks.length - 1].push(p);
|
|
cmdLen += p.length;
|
|
}
|
|
}
|
|
return chunks;
|
|
}
|
|
|
|
async function clippy() {
|
|
const currentBuildMode = buildMode();
|
|
const cmd = ["clippy", "--all-targets", "--all-features", "--locked"];
|
|
|
|
if (currentBuildMode != "debug") {
|
|
cmd.push("--release");
|
|
}
|
|
|
|
const cargoCmd = new Deno.Command("cargo", {
|
|
cwd: ROOT_PATH,
|
|
args: [
|
|
...cmd,
|
|
"--",
|
|
"-D",
|
|
"warnings",
|
|
"--deny",
|
|
"clippy::unused_async",
|
|
// generally prefer the `log` crate, but ignore
|
|
// these print_* rules if necessary
|
|
"--deny",
|
|
"clippy::print_stderr",
|
|
"--deny",
|
|
"clippy::print_stdout",
|
|
],
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
});
|
|
const { code } = await cargoCmd.output();
|
|
|
|
if (code > 0) {
|
|
throw new Error("clippy failed");
|
|
}
|
|
}
|
|
|
|
async function ensureCiYmlUpToDate() {
|
|
const expectedCiFileText = ciFile.generate();
|
|
const actualCiFileText = await Deno.readTextFile(ciFile.CI_YML_URL);
|
|
if (expectedCiFileText !== actualCiFileText) {
|
|
throw new Error(
|
|
"./.github/workflows/ci.yml is out of date. Run: ./.github/workflows/ci.generate.ts",
|
|
);
|
|
}
|
|
}
|
|
|
|
async function ensureNoNewITests() {
|
|
// Note: Only decrease these numbers. Never increase them!!
|
|
// This is to help ensure we slowly deprecate these tests and
|
|
// replace them with spec tests.
|
|
const iTestCounts = {
|
|
"bench_tests.rs": 0,
|
|
"cache_tests.rs": 0,
|
|
"cert_tests.rs": 0,
|
|
"check_tests.rs": 2,
|
|
"compile_tests.rs": 0,
|
|
"coverage_tests.rs": 0,
|
|
"eval_tests.rs": 0,
|
|
"flags_tests.rs": 0,
|
|
"fmt_tests.rs": 16,
|
|
"init_tests.rs": 0,
|
|
"inspector_tests.rs": 0,
|
|
"install_tests.rs": 0,
|
|
"jsr_tests.rs": 0,
|
|
"js_unit_tests.rs": 0,
|
|
"jupyter_tests.rs": 0,
|
|
// Read the comment above. Please don't increase these numbers!
|
|
"lsp_tests.rs": 0,
|
|
"node_compat_tests.rs": 0,
|
|
"node_unit_tests.rs": 2,
|
|
"npm_tests.rs": 5,
|
|
"pm_tests.rs": 0,
|
|
"publish_tests.rs": 0,
|
|
"repl_tests.rs": 0,
|
|
"run_tests.rs": 18,
|
|
"shared_library_tests.rs": 0,
|
|
"task_tests.rs": 2,
|
|
"test_tests.rs": 0,
|
|
"upgrade_tests.rs": 0,
|
|
"vendor_tests.rs": 1,
|
|
"watcher_tests.rs": 0,
|
|
"worker_tests.rs": 0,
|
|
};
|
|
const integrationDir = join(ROOT_PATH, "tests", "integration");
|
|
for await (const entry of Deno.readDir(integrationDir)) {
|
|
if (!entry.name.endsWith("_tests.rs")) {
|
|
continue;
|
|
}
|
|
const fileText = await Deno.readTextFile(join(integrationDir, entry.name));
|
|
const actualCount = fileText.match(/itest\!/g)?.length ?? 0;
|
|
const expectedCount = iTestCounts[entry.name] ?? 0;
|
|
// console.log(`"${entry.name}": ${actualCount},`);
|
|
if (actualCount > expectedCount) {
|
|
throw new Error(
|
|
`New itest added to ${entry.name}! The itest macro is deprecated. Please move your new test to ~/tests/specs.`,
|
|
);
|
|
} else if (actualCount < expectedCount) {
|
|
throw new Error(
|
|
`Thanks for removing an itest in ${entry.name}. ` +
|
|
`Please update the count in tools/lint.js for this file to ${actualCount}.`,
|
|
);
|
|
}
|
|
}
|
|
}
|