Merge "Fixes external network bridge and adds quota limits"
[genesis.git] / fuel / build / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # stefan.k.berg@ericsson.com
4 # jonas.bjurel@ericsson.com
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 SHELL = /bin/bash
12 ############################################################################
13 # BEGIN of variables to customize
14 #
15 #Input args
16 export UNIT_TEST = FALSE
17 export INTERACTIVE = TRUE
18 export ISOSRC = file:$(shell pwd)/fuel-6.0.1.iso
19 export ISOCACHE = $(shell pwd)/$(shell basename $(ISOSRC))
20 export PRODNO = "OPNFV_BGS"
21 export REVSTATE = "P0000"
22 export NEWISO = $(shell pwd)/release/opnfv-${REVSTATE}.iso
23
24 # Note! Invoke with "make REVSTATE=RXXXX all" to make release build!
25 # Invoke with ICOCACHE=/full/path/to/iso if cached ISO is in non-standard location.
26
27 #Build variables
28 export BUILD_BASE := $(shell pwd)
29 export DEB_DEST := $(BUILD_BASE)/release/packages/ubuntu/pool/main
30 export UDEB_DEST := $(BUILD_BASE)/release/packages/ubuntu/pool/debian-installer
31 export PUPPET_DEST := $(BUILD_BASE)/release/puppet/modules
32 export CACHE_DIR := $(BUILD_BASE)/cache
33 export VERSION_FILE := $(BUILD_BASE)/.versions
34 export DOCKERIMG = opnfv.org/ubuntu-builder:14.04
35 export TOPDIR := $(shell pwd)
36
37 #Build subclasses
38
39 SUBDIRS := f_isoroot
40 SUBDIRS += f_opnfv_puppet
41 SUBDIRS += f_osnaily
42 SUBDIRS += f_l23network
43 SUBDIRS += f_resolvconf
44 SUBDIRS += f_ntp
45 SUBDIRS += f_odl_docker
46 SUBDIRS += f_lith_odl_docker
47 #SUBDIRS += f_odl
48
49 # f_example is only an example of how to generate a .deb package and
50 # should not be enabled in official builds.
51 #SUBDIRS += f_example
52
53 ORIGDIR := $(TOPDIR)/origiso
54 #
55 # END of variables to customize
56 #############################################################################
57
58 SUBCLEAN = $(addsuffix .clean,$(SUBDIRS))
59
60
61 .PHONY: all
62 all:
63         @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1)
64         @echo "Versions of cached build results built by" $(shell hostname) "at" $(shell date -u) > $(VERSION_FILE)
65         @echo "cache.mk" $(shell md5sum $(BUILD_BASE)/cache.mk | cut -f1 -d " ") >> $(VERSION_FILE)
66         @echo "config.mk" $(shell md5sum $(BUILD_BASE)/config.mk | cut -f1 -d " ") >> $(VERSION_FILE)
67         $(MAKE) -C f_odl_docker -f Makefile all
68         $(MAKE) -C f_lith_odl_docker -f Makefile all
69         @make -C docker
70         @docker/runcontext $(DOCKERIMG) $(MAKE) $(MAKEFLAGS) iso
71
72 ############################################################################
73 # BEGIN of Include definitions
74 #
75 include config.mk
76 include cache.mk
77 #
78 # END Include definitions
79 #############################################################################
80
81 $(ISOCACHE):
82         # Clone Fuel to non-persistent location and build
83         cd /tmp && git clone $(FUEL_MAIN_REPO)
84         cd /tmp/fuel-main && git checkout $(FUEL_MAIN_TAG)
85         @echo "fuel" `git -C /tmp/fuel-main show | grep commit | head -1 | cut -d " " -f2` >> $(VERSION_FILE)
86         # Setup cgroups for docker-in-docker
87         sudo /root/enable_dockerx2
88         # Patch to fix race condition when doing "Docker-in-Docker" build
89         cd /tmp/fuel-main && patch -p1 < $(TOPDIR)/fuel-main_1.patch
90         # Patch to make the sandbox chroot in Fuel succeed with package
91         # installation in a Docker build
92         cd /tmp/fuel-main && patch -p1 < $(TOPDIR)/fuel-main_2.patch
93         # Remove Docker optimizations, otherwise multistrap will fail during
94         # Fuel build.
95         sudo rm -f /etc/apt/apt.conf.d/docker*
96         #
97         cd /tmp/fuel-main && ./prepare-build-env.sh
98         cd /tmp/fuel-main && make iso
99         mv /tmp/fuel-main/build/artifacts/fuel*.iso .
100
101 .PHONY: mount-origiso umount-origiso
102 mount-origiso: $(ISOCACHE)
103         @echo "Mounting original ISO in $(ORIGDIR)"
104         @mkdir -p $(ORIGDIR)
105         @fuseiso $(ISOCACHE) $(ORIGDIR)
106
107 umount-origiso:
108         @echo "Unmounting original ISO from $(ORIGDIR)"
109         @fusermount -u $(ORIGDIR)
110         @rmdir $(ORIGDIR)
111
112 .PHONY: $(SUBDIRS)
113 $(SUBDIRS):
114         @mkdir -p release/packages/ubuntu/pool/main release/packages/ubuntu/pool/debian-installer release/puppet/modules release/isoroot
115         $(MAKE) -C $@ -f Makefile release
116
117 .PHONY: patch-packages
118 patch-packages:
119         ORIGISO=$(ISOCACHE) REVSTATE=$(REVSTATE) $(MAKE) -C $@ -f Makefile release
120
121 .PHONY: prepare
122 prepare:
123         #$(MAKE) -C opendaylight -f Makefile setup
124
125 .PHONY: odl
126 odl:
127         #$(MAKE) -C opendaylight -f Makefile
128
129 .PHONY: build-clean $(SUBCLEAN)
130 build-clean: $(SUBCLEAN)
131         $(MAKE) -C patch-packages -f Makefile clean
132         @rm -Rf release
133         @rm -Rf newiso
134         @rm -f $(NEWISO)
135
136 .PHONY: clean $(SUBCLEAN)
137 clean:  clean-cache prepare $(SUBCLEAN)
138         $(MAKE) -C patch-packages -f Makefile clean
139         #$(MAKE) -C opendaylight -f Makefile clean
140         @rm -f *.iso
141         @rm -Rf release
142         @rm -Rf newiso
143         @rm -f f_odl
144         @rm -f $(NEWISO)
145         @rm -f $(BUILD_BASE)/.versions
146
147 $(SUBCLEAN): %.clean:
148         $(MAKE) -C $* -f Makefile clean
149
150 # Todo: Make things smarter - we shouldn't need to clean everything
151 # betwen make invocations.
152 .PHONY: iso
153 iso:    prepare build-clean odl $(ISOCACHE) $(SUBDIRS) patch-packages
154         install/install.sh iso $(ISOCACHE) $(NEWISO) $(PRODNO) $(REVSTATE)
155         @printf "\n\nProduct ISO is $(NEWISO)\n\n"