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';
207 - "-r=xplat --env=production --variant=false"
208 - "-r=xplat --env=production --variant=true"
209▶ # TODO: Test more persistent configurations?
210 - "-r=stable --env=development --persistent"
211 - "-r=experimental --env=development --persistent"
· · ·
352 -r=experimental --env=production,
353
354▶ # TODO: Update test config to support www build tests
355 # - "-r=www-classic --env=development --variant=false"
356 # - "-r=www-classic --env=production --variant=false"
· · ·
362 # - "-r=www-modern --env=production --variant=true"
363
364▶ # TODO: Update test config to support xplat build tests
365 # - "-r=xplat --env=development --variant=false"
366 # - "-r=xplat --env=development --variant=true"
· · ·
368 # - "-r=xplat --env=production --variant=true"
369
370▶ # TODO: Test more persistent configurations?
371 ]
372 shard:
· · ·
540 # Compress build directory into a single tarball for easy download
541 - run: tar -zcvf ./build.tgz ./build
542▶ # TODO: Migrate scripts to use `build` directory instead of `build2`
543 - run: cp ./build.tgz ./build2.tgz
544 - name: Archive build artifacts
+ 1 more matches in this file