Skip to content

Commit

Permalink
DO NOT MERGE trigger all pr-check targets
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrozenberg committed Jul 15, 2021
1 parent 1f995d3 commit 68e6042
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build-system/pr-check/build-targets.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ const {getLoggingPrefix, logWithoutTimestamp} = require('../common/logging');
const {gitDiffNameOnlyMain} = require('../common/git');
const {isCiBuild} = require('../common/ci');

/**
* Used to prevent the repeated recomputing of build targets during PR jobs.
*/
let buildTargets;

/**
* Used to prevent the repeated expansion of globs during PR jobs.
*/
Expand Down Expand Up @@ -70,6 +65,11 @@ const Targets = {
VISUAL_DIFF: 'VISUAL_DIFF',
};

/**
* Used to prevent the repeated recomputing of build targets during PR jobs.
*/
let buildTargets = new Set(Object.values(Targets));

/**
* Files matching these targets are known not to affect the runtime. For all
* other targets, we play safe and default to adding the RUNTIME target, which
Expand Down

0 comments on commit 68e6042

Please sign in to comment.