Skip to content

Commit

Permalink
Chad debug printing
Browse files Browse the repository at this point in the history
  • Loading branch information
stylemistake committed Jul 23, 2021
1 parent ae31dbe commit e4324a9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/build/build.js
Expand Up @@ -93,11 +93,17 @@ export const DmTarget = Juke.createTarget({
export const DmLintTarget = Juke.createTarget({
onlyWhen: ({ get }) => get(CiParameter),
executes: async () => {
Juke.logger.info(`bash('tools/ci/check_filedirs.sh')`);
await bash('tools/ci/check_filedirs.sh', `${DME_NAME}.dme`);
Juke.logger.info(`bash('tools/ci/check_changelogs.sh')`);
await bash('tools/ci/check_changelogs.sh');
Juke.logger.info(`bash('tools/ci/check_grep.sh')`);
await bash('tools/ci/check_grep.sh');
Juke.logger.info(`bash('tools/ci/check_misc.sh')`);
await bash('tools/ci/check_misc.sh');
Juke.logger.info(`python('-m', 'dmi.test')`);
await python('-m', 'dmi.test');
Juke.logger.info(`python('-m', 'mapmerge2.dmm_test')`);
await python('-m', 'mapmerge2.dmm_test');
},
});
Expand Down

0 comments on commit e4324a9

Please sign in to comment.