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