Run server build as part of normal SandCastle build

Summary: Build flipper-server as normal build job. Note that `--no-rebuild-plugins` is used to save a lot of time, and

Reviewed By: passy

Differential Revision: D33361569

fbshipit-source-id: 55e97f81dbcfa98901ddc21e2f35f4d1134c74ef
This commit is contained in:
Michel Weststrate
2022-01-04 08:40:07 -08:00
committed by Facebook GitHub Bot
parent c0fac38282
commit d92c403dd2

View File

@@ -96,7 +96,11 @@ if (isFB) {
process.env.FLIPPER_RELEASE_CHANNEL = argv.channel; process.env.FLIPPER_RELEASE_CHANNEL = argv.channel;
process.env.FLIPPER_NO_BUNDLED_PLUGINS = 'true'; if (argv['default-plugins'] === true) {
delete process.env.FLIPPER_NO_DEFAULT_PLUGINS;
} else if (argv['default-plugins'] === false) {
process.env.FLIPPER_NO_DEFAULT_PLUGINS = 'true';
}
// Don't rebuild default plugins, mostly to speed up testing // Don't rebuild default plugins, mostly to speed up testing
if (argv['rebuild-plugins'] === false) { if (argv['rebuild-plugins'] === false) {