Lines Matching +full:runs +full:- +full:on
9 # http://www.apache.org/licenses/LICENSE-2.0
12 # distributed under the License is distributed on an "AS IS" BASIS,
17 # ---
20 # ---
22 set -euo pipefail
30 ./demo.sh generate -- runs the bp2build converter to generate BUILD files from Android.bp files.
31 ./demo.sh query -- runs the bazel query command for all targets in //bionic/libc, recursively.
32 ./demo.sh build -- runs the bazel build command for all targets in //bionic/libc, recursively.
33 ./demo.sh full -- runs the generate, query and build steps in sequence.
34 ./demo.sh help -- prints this message.
39 # We're in <root>/build/bazel/scripts/milestone-2
48 echo -e "${RED}ERROR[Milestone 2 Demo]: $message${RESET}"
53 echo -e "${GREEN}INFO[Milestone 2 Demo]: $message${RESET}"
56 # Ensure that this script uses the checked-in Bazel binary.
64 …TE_BAZEL_FILES=true "${AOSP_ROOT}/build/soong/soong_ui.bash" --make-mode nothing --skip-soong-tests
69 function query-bionic-package() {
75 function build-bionic-package() {
77 bazel build --platforms //build/bazel/platforms:android_x86 //bionic/...
78 bazel build --platforms //build/bazel/platforms:android_x86_64 //bionic/...
79 bazel build --platforms //build/bazel/platforms:android_arm //bionic/...
80 bazel build --platforms //build/bazel/platforms:android_arm64 //bionic/...
84 action=${1:-full}
94 query-bionic-package
97 build-bionic-package
101 query-bionic-package
102 build-bionic-package