Skip to content

Commit

Permalink
🏗 Report bundle-size / PR-deploy from Travis until the switch to Circ…
Browse files Browse the repository at this point in the history
…leCI actually happens (#32179)
  • Loading branch information
rsimha committed Jan 25, 2021
1 parent 88ae7fe commit 4da8b96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build-system/pr-check/bundle-size.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ function prBuildWorkflow() {
}

// TODO(rsimha): Remove this block once Travis is shut off.
if (isTravisBuild()) {
if (!isTravisBuild()) {
printSkipMessage(
jobName,
'this is a Travis build. Sizes will be reported from CircleCI'
'this is a CircleCI build. Sizes will be reported from Travis'
);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion build-system/tasks/pr-deploy-bot-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function replaceUrls(dir) {

async function signalPrDeployUpload(result) {
// TODO(rsimha): Remove this check once Travis is shut down.
if (isTravisBuild()) {
if (!isTravisBuild()) {
return;
}
const loggingPrefix = getLoggingPrefix();
Expand Down

0 comments on commit 4da8b96

Please sign in to comment.