Compare commits

...

6 Commits

Author SHA1 Message Date
IgorKlopov
0e4197af91 dummy change 2020-10-09 16:35:12 +03:00
IgorKlopov
299f6f26b7 dummy change 2020-10-06 13:57:03 +03:00
IgorKlopov
6707acd728 dummy change 2020-10-06 13:03:07 +03:00
IgorKlopov
0814d4f17f dummy change 2020-10-06 11:46:14 +03:00
IgorKlopov
79a16e6b85 dummy change 2020-10-06 01:11:07 +03:00
IgorKlopov
de4e2d4401 force run in sfo 2020-10-05 23:21:19 +03:00
2 changed files with 7 additions and 4 deletions

View File

@@ -1026,6 +1026,11 @@ function getRouteResult(
};
}
function sortFilesBySegmentCount(fileA: string, fileB: string): number {
const lengthA = fileA.split('/').length;
const lengthB = fileB.split('/').length;

View File

@@ -20,7 +20,6 @@ async function nowDeploy(bodies, randomness, uploadNowJson) {
(path.extname(n) === '.sh' ? 0o100755 : 0o100644),
}));
const { FORCE_BUILD_IN_REGION, NOW_DEBUG, VERCEL_DEBUG } = process.env;
const nowJson = JSON.parse(bodies['vercel.json'] || bodies['now.json']);
const nowDeployPayload = {
@@ -31,9 +30,8 @@ async function nowDeploy(bodies, randomness, uploadNowJson) {
env: {
...(nowJson.build || {}).env,
RANDOMNESS_BUILD_ENV_VAR: randomness,
FORCE_BUILD_IN_REGION,
NOW_DEBUG,
VERCEL_DEBUG,
FORCE_BUILD_IN_REGION: 'sfo1',
VERCEL_DEBUG: '1'
},
},
name: 'test2020',