You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by fr...@apache.org on 2017/05/31 14:09:51 UTC

[13/24] incubator-trafficcontrol git commit: Updated default build instructions to refer to the build script.

Updated default build instructions to refer to the build script.

(cherry picked from commit 3bf7ab8fcd94419c3e7c1bed73051cd83477f05c)


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/76851427
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/76851427
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/76851427

Branch: refs/heads/2.0.x
Commit: 76851427d3512c26265df955a49448b2cb0144cc
Parents: 13de696
Author: Chris Lemmons <al...@gmail.com>
Authored: Fri Mar 10 13:20:51 2017 -0700
Committer: Eric Friedrich <fr...@apache.org>
Committed: Wed May 31 10:08:57 2017 -0400

----------------------------------------------------------------------
 BUILD.md | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/76851427/BUILD.md
----------------------------------------------------------------------
diff --git a/BUILD.md b/BUILD.md
index 9ad24f9..eb6c8f1 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -15,22 +15,22 @@ From the top level of the incubator-trafficcontrol directory.  The source in
 the current directory is used for the process.   One or more components (with
 \_build suffix added) can be added on the command line.
 
-Clean up any previously-built docker containers:
-> $ docker-compose -f infrastructure/docker/build/docker-compose.yml down -v
-
-And images:
-> $ docker images | awk '/traffic\_.*\_build/ { print $3 }' | xargs docker rmi -f
-
-Create and run new build containers:
-> $ docker-compose -f infrastructure/docker/build/docker-compose.yml up [ container name ...] 
-
-Container names can be one or more of these:
-* `source`  (builds only the source tarball)
-* `traffic_monitor_build`
-* `traffic_ops_build`
-* `traffic_portal_build`
-* `traffic_router_build`
-* `traffic_stats_build`
+This is all run automatically by the `pkg` script at the root of the repository.
+
+    $ ./pkg -?
+    Usage: ./pkg [options] [projects]
+        -q      Quiet mode. Supresses output.
+        -v      Verbose mode. Lists all build output.
+        -l      List available projects.
+
+        If no projects are listed, all projects will be packaged.
+        Valid projects:
+                - traffic_portal_build
+                - traffic_router_build
+                - traffic_monitor_build
+                - source
+                - traffic_ops_build
+                - traffic_stats_build
 
 If no component names are provided on the command line, all components will be built.