mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-14 14:46:30 +00:00
40409f3151
Summary: This fixes a bug introduced in #317, which only occurred in the cron job variant of the CI script (`yarn travis --full`): the two scripts run in the cron job depend on `yarn backend` having previously written to the `bin/` directory, but this is precisely what we wanted to prevent. To fix this, we simply add an additional target for `yarn backend` during the cron job. This is a little bit wasteful in that we compile the backend applications twice, but it’s not a big deal because (a) it only runs in cron jobs, so it won’t slow down normal builds, and (b) it only takes about 5 seconds, anyway. Test Plan: Export a `GITHUB_TOKEN` and run `yarn travis --full`, which fails before this change and passes after it. wchargin-branch: cron-ci-overwrite-bin
95 lines
2.1 KiB
JavaScript
95 lines
2.1 KiB
JavaScript
// @flow
|
|
|
|
const execDependencyGraph = require("../src/tools/execDependencyGraph").default;
|
|
|
|
main();
|
|
|
|
function main() {
|
|
const mode =
|
|
process.env["TRAVIS_EVENT_TYPE"] === "cron" ||
|
|
process.argv.includes("--full")
|
|
? "FULL"
|
|
: "BASIC";
|
|
execDependencyGraph(makeTasks(mode)).then(({success}) => {
|
|
process.exitCode = success ? 0 : 1;
|
|
});
|
|
}
|
|
|
|
function makeTasks(mode /*: "BASIC" | "FULL" */) {
|
|
const basicTasks = [
|
|
{
|
|
id: "ensure-flow-typing",
|
|
cmd: ["./scripts/ensure-flow.sh"],
|
|
deps: [],
|
|
},
|
|
{
|
|
// eslint-disable-next-line no-useless-concat
|
|
id: "check-stop" + "ships",
|
|
// eslint-disable-next-line no-useless-concat
|
|
cmd: ["./scripts/check-stop" + "ships.sh"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "check-pretty",
|
|
cmd: ["npm", "run", "--silent", "check-pretty"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "lint",
|
|
cmd: ["npm", "run", "--silent", "lint"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "flow",
|
|
cmd: [
|
|
"npm",
|
|
"run",
|
|
"--silent",
|
|
"flow",
|
|
"--",
|
|
"--quiet",
|
|
"--max-warnings=0",
|
|
],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "ci-test",
|
|
cmd: ["npm", "run", "--silent", "ci-test"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "backend",
|
|
cmd: ["npm", "run", "--silent", "backend", "--", "--dry-run"],
|
|
deps: [],
|
|
},
|
|
];
|
|
const extraTasks = [
|
|
{
|
|
id: "backend-in-place",
|
|
cmd: ["npm", "run", "--silent", "backend"],
|
|
// This task depends on `check-pretty` in order to work around a
|
|
// race condition in Prettier:
|
|
// https://github.com/prettier/prettier/issues/4468
|
|
deps: ["check-pretty"],
|
|
},
|
|
{
|
|
id: "fetchGithubRepoTest",
|
|
cmd: ["./src/plugins/github/fetchGithubRepoTest.sh", "--no-build"],
|
|
deps: ["backend-in-place"],
|
|
},
|
|
{
|
|
id: "loadRepositoryTest",
|
|
cmd: ["./src/plugins/git/loadRepositoryTest.sh", "--no-build"],
|
|
deps: ["backend-in-place"],
|
|
},
|
|
];
|
|
switch (mode) {
|
|
case "BASIC":
|
|
return basicTasks;
|
|
case "FULL":
|
|
return [].concat(basicTasks, extraTasks);
|
|
default:
|
|
/*:: (mode: empty); */ throw new Error(mode);
|
|
}
|
|
}
|