mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 22:16:58 +02:00
Review URL: http://chromereview.prom.corp.google.com/1186036 git-svn-id: svn://chrome-svn/chromeos/trunk@218 06c00378-0e64-4dae-be16-12b19f9950a1
19 lines
450 B
Bash
Executable File
19 lines
450 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Simple script for building the entire system.
|
|
|
|
# Die on error; print commands
|
|
set -e
|
|
|
|
SCRIPTS_DIR=$(dirname $0)
|
|
|
|
$SCRIPTS_DIR/build_platform_packages.sh
|
|
$SCRIPTS_DIR/build_tests.sh
|
|
$SCRIPTS_DIR/build_kernel.sh
|
|
$SCRIPTS_DIR/run_tests.sh
|
|
$SCRIPTS_DIR/build_image.sh
|