Adjust kernel numbers comparison
[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_FUEL"
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 # Use snapshots
47 # Use nearby repositories
48 export MIRROR_UBUNTU_URL := $(shell ./f_isoroot/f_repobuild/select_ubuntu_repo.sh --url)
49 export MIRROR_UBUNTU := $(shell echo "$(MIRROR_UBUNTU_URL)" | cut -d'/' -f3 )
50 export MIRROR_UBUNTU_ROOT := $(shell echo -n '/' ; echo "$(MIRROR_UBUNTU_URL)" | cut -d'/' -f4-)
51
52 export LATEST_MIRROR_ID_URL := http://$(shell ./select_closest_fuel_mirror.py)
53
54 export MIRROR_MOS_UBUNTU := $(shell echo "$(LATEST_MIRROR_ID_URL)" | cut -d'/' -f3)
55 export LATEST_TARGET_UBUNTU := $(shell curl -sSf "$(MIRROR_MOS_UBUNTU)/mos-repos/ubuntu/8.0.target.txt" | head -1)
56 export MIRROR_MOS_UBUNTU_ROOT := /mos-repos/ubuntu/$(LATEST_TARGET_UBUNTU)
57
58 export LATEST_TARGET_CENTOS := $(shell curl -sSf "$(LATEST_MIRROR_ID_URL)/mos-repos/centos/mos8.0-centos7-fuel/os.target.txt" | head -1)
59 export MIRROR_FUEL := "$(LATEST_MIRROR_ID_URL)/mos-repos/centos/mos8.0-centos7-fuel/$(LATEST_TARGET_CENTOS)/x86_64"
60
61 # uncomment and use: make print-VARIABLE
62 #print-%  : ; @echo $* = $($*)
63
64 #Build subclasses
65
66 SUBDIRS := f_isoroot
67
68 # f_example is only an example of how to generate a .deb package and
69 # should not be enabled in official builds.
70 #SUBDIRS += f_example
71
72 ORIGDIR := $(TOPDIR)/origiso
73 #
74 # END of variables to customize
75 #############################################################################
76
77 SUBCLEAN = $(addsuffix .clean,$(SUBDIRS))
78
79 .PHONY: all
80 all:
81         @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1)
82         @make -C docker
83         @lsb_release -a | grep Ubuntu > /dev/null 2>&1 || (echo 'Ubuntu is the only supported Linux distribution for this build system'; exit 1)
84         @KERNEL_VER=$$(uname -r); \
85         KERNEL_ARRAY=($${KERNEL_VER//./ }); \
86         if [ $${KERNEL_ARRAY[0]} -lt 3  ] || [[ $${KERNEL_ARRAY[0]} -eq 3 && $${KERNEL_ARRAY[1]} -lt 19  ]] ; then (echo 'Kernel version must be 3.19 or newer'; exit 1) ; fi
87         @docker/runcontext $(DOCKERIMG) wget -q www.google.com > /dev/null 2>&1 || (echo 'No docker network connectivity or name server - check your network- and docker settings'; exit 1)
88         @docker/runcontext $(DOCKERIMG) $(MAKE) $(MAKEFLAGS) iso
89
90
91 ############################################################################
92 # BEGIN of Include definitions
93 #
94 include config.mk
95 include cache.mk
96 #
97 # END Include definitions
98 #############################################################################
99
100 $(ISOCACHE):
101         # Clone Fuel to non-persistent location and build
102         if [ ! -d /tmp/fuel-main ]; then \
103                 cd /tmp && git clone $(FUEL_MAIN_REPO); \
104         fi
105         cd /tmp/fuel-main && git checkout $(FUEL_MAIN_TAG)
106         @echo "fuel" `git -C /tmp/fuel-main show | grep commit | head -1 | cut -d " " -f2` >> $(VERSION_FILE)
107         # Patch for adding dosfstools, as Fuel 6.1 is running mkfs.vfat
108         cd /tmp/fuel-main && patch -f -p0 < $(TOPDIR)/fuel-main_5.patch
109         # Patch for using the Czech Fuel mirror
110         # cd /tmp/fuel-main && patch -p0 < $(TOPDIR)/fuel-main_7.patch
111         # Patch to counteract new cpio behavior
112         cd /tmp/fuel-main && patch -p0 < $(TOPDIR)/fuel-main_cpio.patch
113         # Remove Docker optimizations, otherwise multistrap will fail during
114         # Fuel build.
115         sudo rm -f /etc/apt/apt.conf.d/docker*
116         #
117         # Need to replace the old Docker v. 1.5.0 with a later version to be
118         # able to access the Docker remote repository!
119         cd /tmp/fuel-main && patch -f -p0 < $(TOPDIR)/fuel-main_docker_version.patch
120         #
121         cd /tmp/fuel-main && ./prepare-build-env.sh
122         # Verify that Docker is alive
123         sudo docker info
124         cd /tmp/fuel-main && make repos
125         $(REPOINFO) -r /tmp/fuel-main > gitinfo_fuel.txt
126         # Repeat build up to ten times
127         sudo -E ./fuel_build_loop
128         cp /tmp/fuel-main/build/artifacts/fuel*.iso .
129         # Store artifact in cache straight away if caching is enabled
130         # (no .cacheid will be present unless this is a cached build)
131         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
132
133 .PHONY: mount-origiso umount-origiso
134 mount-origiso: $(ISOCACHE)
135         @echo "Mounting original ISO in $(ORIGDIR)"
136         @mkdir -p $(ORIGDIR)
137         @fuseiso $(ISOCACHE) $(ORIGDIR)
138
139 umount-origiso:
140         @echo "Unmounting original ISO from $(ORIGDIR)"
141         @fusermount -u $(ORIGDIR)
142         @rmdir $(ORIGDIR)
143
144 .PHONY: $(SUBDIRS)
145 $(SUBDIRS):
146         @mkdir -p release/packages/ubuntu/pool/main release/packages/ubuntu/pool/debian-installer release/puppet/modules release/isoroot
147         $(MAKE) -C $@ -f Makefile release
148
149 .PHONY: patch-packages
150 patch-packages:
151         ORIGISO=$(ISOCACHE) REVSTATE=$(REVSTATE) $(MAKE) -C $@ -f Makefile release
152
153 .PHONY: clean $(SUBCLEAN)
154 clean:  $(SUBCLEAN)
155         $(MAKE) -C patch-packages -f Makefile clean
156         @rm -f *.iso
157         @rm -Rf release
158         @rm -Rf newiso
159         @rm -Rf .versions
160         @rm -f $(NEWISO)
161         @rm -f $(BUILD_BASE)/gitinfo_*.txt
162
163 .PHONY: deepclean
164 deepclean: clean clean-cache
165         make -C docker clean
166         docker rmi opnfv.org/ubuntu-builder:14.04 &>/dev/null || exit 0
167         docker rmi opnfv.org/ubuntu-builder:latest &>/dev/null || exit 0
168         docker rmi ubuntu:14.04 &>/dev/null || exit 0
169         @if docker images | grep -q "ubuntu *14.04"; then \
170                 echo "Error: ubuntu:14.04 still present!"; \
171                 exit 1; \
172         fi
173         @if docker images | grep -q "opnfv.org/ubuntu-builder"; then \
174                 echo "Error: opnfv.org/ubuntu-builder still present!"; \
175                 exit 1; \
176         fi
177
178 $(SUBCLEAN): %.clean:
179         $(MAKE) -C $* -f Makefile clean
180
181 .PHONY: setup-env
182 setup-env:
183         @if [ -f environment.mk ]; then \
184                 sudo bash -c "cat environment.mk >> /etc/environment"; \
185         fi
186
187 # Todo: Make things smarter - we shouldn't need to clean everything
188 # betwen make invocations.
189 .PHONY: iso
190 iso:    setup-env $(ISOCACHE) $(SUBDIRS) patch-packages
191         $(REPOINFO) . > gitinfo_main.txt
192         install/install.sh iso $(ISOCACHE) $(NEWISO) $(PRODNO) $(REVSTATE)
193         @printf "\n\nProduct ISO is $(NEWISO)\n\n"
194
195 # Start a bash shell in docker for Makefile debugging
196 .PHONY: debug
197 debug:
198         @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1)
199         @make -C docker
200         docker/runcontext $(DOCKERIMG) debug
201
202 #############################################################################
203 # Cache operations - only used when building through ci/build.sh
204 #############################################################################
205
206 # Create a unique hash to be used for getting and putting cache, based on:
207 #   - The commit ID of the full Fuel repo structre
208 #   - The contents of all local Fuel patches
209 .cacheid:
210         cd /tmp && git clone $(FUEL_MAIN_REPO)
211         cd /tmp/fuel-main && git checkout $(FUEL_MAIN_TAG)
212         cd /tmp/fuel-main && make repos
213         $(REPOINFO) -r /tmp/fuel-main > .cachedata
214         sha1sum *.patch >> .cachedata
215         sha1sum fuel_build_loop >> .cachedata
216         sha1sum config.mk >> .cachedata
217         sha1sum Makefile >> .cachedata
218         $(CACHETOOL) getbiweek >> .cachedata
219         cat .cachedata | $(CACHETOOL) getid > .cacheid
220         # Not removing fuel-main as it is re-used in build
221
222 # Clean local data related to caching - called prior to ordinary build
223 .PHONY: clean-cache
224 clean-cache: $(SUBCLEANCACHE)
225         rm -f .cachedata .cacheid
226
227 # Try to download cache - called prior to ordinary build
228 .PHONY: get-cache
229 get-cache: .cacheid
230         @if $(CACHETOOL) check $(shell cat .cacheid); then \
231                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
232         else \
233                 exit 0;\
234         fi
235
236 # Store cache if not already stored - called after ordinary build
237 .PHONY: put-cache
238 put-cache: .cacheid
239         @tar cf - fuel*.iso gitinfo_fuel.txt | $(CACHETOOL) put $(shell cat .cacheid)