Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 1 | load("//tools/build/bazel:generate_workspace.bzl", "ONOS_VERSION") |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 2 | load(":modules.bzl", "APPS", "CORE") |
Thomas Vachuska | aab45d1 | 2018-06-05 16:39:46 -0700 | [diff] [blame] | 3 | |
Ray Milkey | 7dac7da | 2017-08-01 16:56:05 -0700 | [diff] [blame] | 4 | filegroup( |
| 5 | name = "onos", |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 6 | srcs = CORE + APPS + [ |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 7 | ":onos-package-admin", |
| 8 | ":onos-package-test", |
| 9 | ":onos-package", |
| 10 | ], |
Thomas Vachuska | 0f95603 | 2018-06-12 10:41:12 -0700 | [diff] [blame] | 11 | visibility = ["//visibility:public"], |
| 12 | ) |
| 13 | |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 14 | KARAF = "@apache_karaf//file" |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 15 | |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 16 | PATCHES = "@apache_karaf_patches//file" |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 17 | |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 18 | BRANDING = "//tools/package/branding:onos-tools-package-branding" |
| 19 | |
| 20 | # Generates auxiliary karaf.zip file; branded and augmented with ONOS runtime tools |
| 21 | genrule( |
| 22 | name = "onos-karaf", |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 23 | srcs = [ |
| 24 | KARAF, |
| 25 | PATCHES, |
| 26 | BRANDING, |
| 27 | ] + glob([ |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 28 | "tools/package/bin/*", |
| 29 | "tools/package/etc/*", |
| 30 | "tools/package/init/*", |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 31 | "tools/package/runtime/bin/*", |
| 32 | ]), |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 33 | outs = ["karaf.zip"], |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 34 | cmd = "$(location tools/package/onos-prep-karaf) $(location karaf.zip) $(location %s) %s $(location %s) $(location %s) tools/package" % |
| 35 | (KARAF, ONOS_VERSION, BRANDING, PATCHES), |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 36 | tools = ["tools/package/onos-prep-karaf"], |
| 37 | ) |
| 38 | |
| 39 | # Generates the principal onos.tar.gz bundle |
| 40 | # FIXME: Need to include OAR files as dependencies and feature bundles as well |
| 41 | genrule( |
| 42 | name = "onos-package", |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 43 | srcs = [ |
| 44 | "//tools/package/features:onos-features", |
| 45 | ":onos-karaf", |
| 46 | ], |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 47 | outs = ["onos.tar.gz"], |
| 48 | cmd = "$(location tools/package/onos_stage.py) $(location onos.tar.gz) %s $(location :onos-karaf) $(SRCS)" % ONOS_VERSION, |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 49 | output_to_bindir = True, |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 50 | tools = ["tools/package/onos_stage.py"], |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 51 | ) |
| 52 | |
| 53 | # Generates the onos-admin.tar.gz file with remote admin tools |
| 54 | genrule( |
| 55 | name = "onos-package-admin", |
| 56 | srcs = glob([ |
| 57 | "tools/package/runtime/bin/*", |
| 58 | "tools/dev/bin/onos-create-app", |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 59 | "tools/test/bin/onos", |
| 60 | ]), |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 61 | outs = ["onos-admin.tar.gz"], |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 62 | cmd = "mkdir onos-admin-%s; cp $(SRCS) onos-admin-%s; tar zcf $(location onos-admin.tar.gz) onos-admin-%s" % |
| 63 | (ONOS_VERSION, ONOS_VERSION, ONOS_VERSION), |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 64 | output_to_bindir = True, |
| 65 | ) |
| 66 | |
| 67 | # Generates the onos-test.tar.gz file with test tools |
| 68 | genrule( |
| 69 | name = "onos-package-test", |
| 70 | srcs = glob([ |
| 71 | "tools/build/envDefaults", |
| 72 | "tools/dev/bash_profile", |
| 73 | "tools/dev/bin/onos-create-app", |
| 74 | "tools/test/**/*", |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 75 | "tools/package/runtime/bin/*", |
| 76 | ]), |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 77 | outs = ["onos-test.tar.gz"], |
Ray Milkey | 15053f0 | 2018-06-13 10:00:45 -0700 | [diff] [blame] | 78 | cmd = "mkdir onos-test-%s; cp -r tools onos-test-%s; tar zcf $(location onos-test.tar.gz) onos-test-%s" % |
| 79 | (ONOS_VERSION, ONOS_VERSION, ONOS_VERSION), |
Thomas Vachuska | f5d1720 | 2018-06-12 17:28:13 -0700 | [diff] [blame] | 80 | output_to_bindir = True, |
| 81 | ) |
| 82 | |
| 83 | # Runs ONOS as a single instance from the /tmp directory |
| 84 | # FIXME: Still work in progress |
Ray Milkey | 0fe0cdb | 2018-06-12 18:13:35 -0700 | [diff] [blame] | 85 | #genrule( |
| 86 | # name = "onos-run", |
| 87 | # outs = ["onos-runner"], |
| 88 | # srcs = ["onos-run-karaf", "onos-package"], |
| 89 | # cmd = "sed \"s#ONOS_TAR=#ONOS_TAR=$(location :onos-package)#\" $(location onos-run-karaf) > $(location onos-runner); chmod +x $(location onos-runner)", |
| 90 | # executable = True, |
| 91 | # output_to_bindir = True, |
| 92 | # visibility = ["//visibility:public"], |
| 93 | #) |