0ad83bff678e80a427a27c2693fed5a910928076
[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         #
96         cd /tmp/fuel-main && ./prepare-build-env.sh
97         cd /tmp/fuel-main && make repos
98         $(REPOINFO) -r /tmp/fuel-main > gitinfo_fuel.txt
99         #
100         cd /tmp/fuel-main && sudo make iso
101         cp /tmp/fuel-main/build/artifacts/fuel*.iso .
102
103 .PHONY: mount-origiso umount-origiso
104 mount-origiso: $(ISOCACHE)
105         @echo "Mounting original ISO in $(ORIGDIR)"
106         @mkdir -p $(ORIGDIR)
107         @fuseiso $(ISOCACHE) $(ORIGDIR)
108
109 umount-origiso:
110         @echo "Unmounting original ISO from $(ORIGDIR)"
111         @fusermount -u $(ORIGDIR)
112         @rmdir $(ORIGDIR)
113
114 .PHONY: $(SUBDIRS)
115 $(SUBDIRS):
116         @mkdir -p release/packages/ubuntu/pool/main release/packages/ubuntu/pool/debian-installer release/puppet/modules release/isoroot
117         $(MAKE) -C $@ -f Makefile release
118
119 .PHONY: patch-packages
120 patch-packages:
121         ORIGISO=$(ISOCACHE) REVSTATE=$(REVSTATE) $(MAKE) -C $@ -f Makefile release
122
123 .PHONY: clean $(SUBCLEAN)
124 clean:  $(SUBCLEAN)
125         $(MAKE) -C patch-packages -f Makefile clean
126         @rm -f *.iso
127         @rm -Rf release
128         @rm -Rf newiso
129         @rm -Rf .versions
130         @rm -f $(NEWISO)
131         @rm -f $(BUILD_BASE)/gitinfo_*.txt
132
133 .PHONY: deepclean
134 deepclean: clean clean-cache
135         make -C docker clean
136         docker rmi opnfv.org/ubuntu-builder:14.04 &>/dev/null || exit 0
137         docker rmi opnfv.org/ubuntu-builder:latest &>/dev/null || exit 0
138         docker rmi ubuntu:14.04 &>/dev/null || exit 0
139         @if docker images | grep -q "ubuntu *14.04"; then \
140                 echo "Error: ubuntu:14.04 still present!"; \
141                 exit 1; \
142         fi
143         @if docker images | grep -q "opnfv.org/ubuntu-builder"; then \
144                 echo "Error: opnfv.org/ubuntu-builder still present!"; \
145                 exit 1; \
146         fi
147
148 $(SUBCLEAN): %.clean:
149         $(MAKE) -C $* -f Makefile clean
150
151 .PHONY: setup-env
152 setup-env:
153         @if [ -f environment.mk ]; then \
154                 sudo bash -c "cat environment.mk >> /etc/environment"; \
155         fi
156
157 # Todo: Make things smarter - we shouldn't need to clean everything
158 # betwen make invocations.
159 .PHONY: iso
160 iso:    setup-env $(ISOCACHE) $(SUBDIRS) patch-packages
161         $(REPOINFO) . > gitinfo_main.txt
162         install/install.sh iso $(ISOCACHE) $(NEWISO) $(PRODNO) $(REVSTATE)
163         @printf "\n\nProduct ISO is $(NEWISO)\n\n"
164
165 # Start a bash shell in docker for Makefile debugging
166 .PHONY: debug
167 debug:
168         @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1)
169         @make -C docker
170         docker/runcontext $(DOCKERIMG) debug
171
172 #############################################################################
173 # Cache operations - only used when building through ci/build.sh
174 #############################################################################
175
176 # Create a unique hash to be used for getting and putting cache, based on:
177 #   - The commit ID of the full Fuel repo structre
178 #   - The contents of all local Fuel patches
179 .cacheid:
180         cd /tmp && git clone $(FUEL_MAIN_REPO)
181         cd /tmp/fuel-main && git checkout $(FUEL_MAIN_TAG)
182         cd /tmp/fuel-main && make repos
183         $(REPOINFO) -r /tmp/fuel-main > .cachedata
184         sha1sum fuel-main*.patch >> .cachedata
185         $(CACHETOOL) getbiweek >> .cachedata
186         cat .cachedata | $(CACHETOOL) getid > .cacheid
187         # Not removing fuel-main as it is re-used in build
188
189 # Clean local data related to caching - called prior to ordinary build
190 .PHONY: clean-cache
191 clean-cache: $(SUBCLEANCACHE)
192         rm -f .cachedata .cacheid
193
194 # Try to download cache - called prior to ordinary build
195 .PHONY: get-cache
196 get-cache: .cacheid
197         @if $(CACHETOOL) check $(shell cat .cacheid); then \
198                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
199         else \
200                 exit 0;\
201         fi
202
203 # Store cache if not already stored - called after ordinary build
204 .PHONY: put-cache
205 put-cache: .cacheid
206         @tar cf - fuel*.iso gitinfo_fuel.txt | $(CACHETOOL) put $(shell cat .cacheid)