Merge "Fuel 8 uplift"
[fuel.git] / 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 # This file will be created if needed by runcontext to contain proxy
14 # settings.
15 -include environment.mk
16
17 ############################################################################
18 # BEGIN of variables to customize
19 #
20 #Input args
21 export ISOSRC = file:$(shell pwd)/fuel-8.0.iso
22 export ISOCACHE = $(shell pwd)/$(shell basename $(ISOSRC))
23 export PRODNO = "OPNFV_BGS"
24 export REVSTATE = "P0000"
25
26 ifdef BUILD_FUEL_PLUGINS
27 $(warning Overriding plugin build selection to $(BUILD_FUEL_PLUGINS))
28 export NEWISO = $(shell pwd)/release/unofficial-opnfv-${REVSTATE}.iso
29 else
30 export NEWISO = $(shell pwd)/release/opnfv-${REVSTATE}.iso
31 endif
32
33 # Note! Invoke with "make REVSTATE=RXXXX all" to make release build!
34 # Invoke with ICOCACHE=/full/path/to/iso if cached ISO is in non-standard location.
35
36 # Build variables
37 export BUILD_BASE := $(shell pwd)
38 export DEB_DEST := $(BUILD_BASE)/release/packages/ubuntu/pool/main
39 export UDEB_DEST := $(BUILD_BASE)/release/packages/ubuntu/pool/debian-installer
40 export PUPPET_DEST := $(BUILD_BASE)/release/puppet/modules
41 export VERSION_FILE := $(BUILD_BASE)/.versions
42 export DOCKERIMG = opnfv.org/ubuntu-builder:14.04
43 export TOPDIR := $(shell pwd)
44 export REPOINFO  := $(BUILD_BASE)/repo_info.sh
45
46 #Build subclasses
47
48 SUBDIRS := f_isoroot
49
50 # f_example is only an example of how to generate a .deb package and
51 # should not be enabled in official builds.
52 #SUBDIRS += f_example
53
54 ORIGDIR := $(TOPDIR)/origiso
55 #
56 # END of variables to customize
57 #############################################################################
58
59 SUBCLEAN = $(addsuffix .clean,$(SUBDIRS))
60
61 .PHONY: all
62 all:
63         @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1)
64         @make -C docker
65         @docker/runcontext $(DOCKERIMG) $(MAKE) $(MAKEFLAGS) iso
66
67
68 ############################################################################
69 # BEGIN of Include definitions
70 #
71 include config.mk
72 include cache.mk
73 #
74 # END Include definitions
75 #############################################################################
76
77 $(ISOCACHE):
78         # Clone Fuel to non-persistent location and build
79         if [ ! -d /tmp/fuel-main ]; then \
80                 cd /tmp && git clone $(FUEL_MAIN_REPO); \
81         fi
82         cd /tmp/fuel-main && git checkout $(FUEL_MAIN_TAG)
83         @echo "fuel" `git -C /tmp/fuel-main show | grep commit | head -1 | cut -d " " -f2` >> $(VERSION_FILE)
84         # Patch for adding dosfstools, as Fuel 6.1 is running mkfs.vfat
85         cd /tmp/fuel-main && patch -p0 < $(TOPDIR)/fuel-main_5.patch
86         # Patch for using the Czech Fuel mirror
87         # cd /tmp/fuel-main && patch -p0 < $(TOPDIR)/fuel-main_7.patch
88         # Remove Docker optimizations, otherwise multistrap will fail during
89         # Fuel build.
90         sudo rm -f /etc/apt/apt.conf.d/docker*
91         #
92         # Need to replace the old Docker v. 1.5.0 with a later version to be
93         # able to access the Docker remote repository!
94         cd /tmp/fuel-main && patch -p0 < $(TOPDIR)/fuel-main_docker_version.patch
95         cd /tmp/fuel-main && patch -p0 < $(TOPDIR)/fuel-main_docker_dns.patch
96         #
97         cd /tmp/fuel-main && ./prepare-build-env.sh
98         cd /tmp/fuel-main && make repos
99         $(REPOINFO) -r /tmp/fuel-main > gitinfo_fuel.txt
100         #
101         cd /tmp/fuel-main && sudo make iso
102         cp /tmp/fuel-main/build/artifacts/fuel*.iso .
103
104 .PHONY: mount-origiso umount-origiso
105 mount-origiso: $(ISOCACHE)
106         @echo "Mounting original ISO in $(ORIGDIR)"
107         @mkdir -p $(ORIGDIR)
108         @fuseiso $(ISOCACHE) $(ORIGDIR)
109
110 umount-origiso:
111         @echo "Unmounting original ISO from $(ORIGDIR)"
112         @fusermount -u $(ORIGDIR)
113         @rmdir $(ORIGDIR)
114
115 .PHONY: $(SUBDIRS)
116 $(SUBDIRS):
117         @mkdir -p release/packages/ubuntu/pool/main release/packages/ubuntu/pool/debian-installer release/puppet/modules release/isoroot
118         $(MAKE) -C $@ -f Makefile release
119
120 .PHONY: patch-packages
121 patch-packages:
122         ORIGISO=$(ISOCACHE) REVSTATE=$(REVSTATE) $(MAKE) -C $@ -f Makefile release
123
124 .PHONY: clean $(SUBCLEAN)
125 clean:  $(SUBCLEAN)
126         $(MAKE) -C patch-packages -f Makefile clean
127         @rm -f *.iso
128         @rm -Rf release
129         @rm -Rf newiso
130         @rm -Rf .versions
131         @rm -f $(NEWISO)
132         @rm -f $(BUILD_BASE)/gitinfo_*.txt
133
134 .PHONY: deepclean
135 deepclean: clean clean-cache
136         make -C docker clean
137         docker rmi opnfv.org/ubuntu-builder:14.04 &>/dev/null || exit 0
138         docker rmi opnfv.org/ubuntu-builder:latest &>/dev/null || exit 0
139         docker rmi ubuntu:14.04 &>/dev/null || exit 0
140         @if docker images | grep -q "ubuntu *14.04"; then \
141                 echo "Error: ubuntu:14.04 still present!"; \
142                 exit 1; \
143         fi
144         @if docker images | grep -q "opnfv.org/ubuntu-builder"; then \
145                 echo "Error: opnfv.org/ubuntu-builder still present!"; \
146                 exit 1; \
147         fi
148
149 $(SUBCLEAN): %.clean:
150         $(MAKE) -C $* -f Makefile clean
151
152 .PHONY: setup-env
153 setup-env:
154         @if [ -f environment.mk ]; then \
155                 sudo bash -c "cat environment.mk >> /etc/environment"; \
156         fi
157
158 # Todo: Make things smarter - we shouldn't need to clean everything
159 # betwen make invocations.
160 .PHONY: iso
161 iso:    setup-env $(ISOCACHE) $(SUBDIRS) patch-packages
162         $(REPOINFO) . > gitinfo_main.txt
163         install/install.sh iso $(ISOCACHE) $(NEWISO) $(PRODNO) $(REVSTATE)
164         @printf "\n\nProduct ISO is $(NEWISO)\n\n"
165
166 # Start a bash shell in docker for Makefile debugging
167 .PHONY: debug
168 debug:
169         @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1)
170         @make -C docker
171         docker/runcontext $(DOCKERIMG) debug
172
173 #############################################################################
174 # Cache operations - only used when building through ci/build.sh
175 #############################################################################
176
177 # Create a unique hash to be used for getting and putting cache, based on:
178 #   - The commit ID of the full Fuel repo structre
179 #   - The contents of all local Fuel patches
180 .cacheid:
181         cd /tmp && git clone $(FUEL_MAIN_REPO)
182         cd /tmp/fuel-main && git checkout $(FUEL_MAIN_TAG)
183         cd /tmp/fuel-main && make repos
184         $(REPOINFO) -r /tmp/fuel-main > .cachedata
185         sha1sum fuel-main*.patch >> .cachedata
186         $(CACHETOOL) getbiweek >> .cachedata
187         cat .cachedata | $(CACHETOOL) getid > .cacheid
188         # Not removing fuel-main as it is re-used in build
189
190 # Clean local data related to caching - called prior to ordinary build
191 .PHONY: clean-cache
192 clean-cache: $(SUBCLEANCACHE)
193         rm -f .cachedata .cacheid
194
195 # Try to download cache - called prior to ordinary build
196 .PHONY: get-cache
197 get-cache: .cacheid
198         @if $(CACHETOOL) check $(shell cat .cacheid); then \
199                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
200         else \
201                 exit 0;\
202         fi
203
204 # Store cache if not already stored - called after ordinary build
205 .PHONY: put-cache
206 put-cache: .cacheid
207         @tar cf - fuel*.iso gitinfo_fuel.txt | $(CACHETOOL) put $(shell cat .cacheid)