364 with:
365 script: |
366▶ // TODO: Move this to a script file.
367 // We currently can't call scripts from the repo because
368 // at this point in the workflow, we're on the compiled
· · ·
374 const {execSync} = require('child_process');
375
376▶ // TODO: when we move this to a script, we can use this from npm.
377 // Copy of signedsource since we can't install deps on this branch.
378 const GENERATED = '@' + 'generated';
203 - "-r=xplat --env=production --variant=false"
204 - "-r=xplat --env=production --variant=true"
205▶ # TODO: Test more persistent configurations?
206 - "-r=stable --env=development --persistent"
207 - "-r=experimental --env=development --persistent"
· · ·
330 -r=experimental --env=production,
331
332▶ # TODO: Update test config to support www build tests
333 # - "-r=www-classic --env=development --variant=false"
334 # - "-r=www-classic --env=production --variant=false"
· · ·
340 # - "-r=www-modern --env=production --variant=true"
341
342▶ # TODO: Update test config to support xplat build tests
343 # - "-r=xplat --env=development --variant=false"
344 # - "-r=xplat --env=development --variant=true"
· · ·
346 # - "-r=xplat --env=production --variant=true"
347
348▶ # TODO: Test more persistent configurations?
349 ]
350 shard:
· · ·
477 # Compress build directory into a single tarball for easy download
478 - run: tar -zcvf ./build.tgz ./build
479▶ # TODO: Migrate scripts to use `build` directory instead of `build2`
480 - run: cp ./build.tgz ./build2.tgz
481 - name: Archive build artifacts
+ 1 more matches in this file