5fae9adb0f
Use a Debian9 container because the build scripts for Flutter Android require jdk8, which isn't available on Debian10. -Shell script executes the GN and Ninja commands -flutter.py executes the script in Debian9 container --the Flutter build is particular about directory structure and uses various relative paths, so the entire swarming directory is mounted. -Followup CL will update remove the old Flutter Android job and update the BuildStats job. Bug: skia:9438 Change-Id: I60c62425f21214b4ae6a810a787418a8975d204e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/282616 Commit-Queue: Weston Tracey <westont@google.com> Reviewed-by: Eric Boren <borenet@google.com>
24 lines
665 B
Bash
Executable File
24 lines
665 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2020 Google LLC
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Call with <swarming dir> <top level of flutter checkout> <out_dir> [GN arguments...]
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export PATH="$1/recipe_bundle/depot_tools:${PATH}"
|
|
|
|
# e.g. /mnt/pd0/s/w/ir/cache/work/flutter/src
|
|
source_dir=$2
|
|
# e.g. /mnt/pd0/s/w/ir/cache/work/flutter/src/out/android_release
|
|
out_dir=$3
|
|
shift 3
|
|
cd $source_dir
|
|
flutter/tools/gn "$@"
|
|
# This is why we have to mount the entire swarming directory, GN sets a command
|
|
# to do a version check via relative path (../../flutter/third_party/gn/gn)
|
|
ninja -v -C $out_dir -j100
|