4b68475f21794859b132575370ee4175c58e1f53
[fuel.git] / build / f_isoroot / f_kvm-pluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # jonas.bjurel@eicsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 TOP := $(shell pwd)
11
12 ############################################################################
13 # BEGIN of Include definitions
14 #
15 include config.mk
16 #
17 # END Include definitions
18 #############################################################################
19
20 .PHONY: all
21 all: .kvmbuild
22
23 .PHONY: clean
24 clean:
25         @rm -f .kvmbuild ../release/opnfv/fuel-plugin-kvm*.rpm fuel-plugin-kvm*.rpm
26         @rm -f $(BUILD_BASE)/gitinfo_kvm-plugin.txt gitinfo_kvm-plugin.txt
27
28 .PHONY: release
29 release:.kvmbuild
30         @rm -f ../release/opnfv/fuel-plugin-kvm*.rpm
31         @mkdir -p ../release/opnfv
32         @cp fuel-plugin-kvm*.rpm ../release/opnfv/
33         cp gitinfo_kvm-plugin.txt $(BUILD_BASE)
34
35 .kvmbuild:
36         # fix me
37         @sudo rm -rf kvmfornfv
38         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
39         sudo pip install fuel-plugin-builder
40         ../../docker/ubuntu-builder/install_docker.sh
41         git clone $(KVMFORNFV_REPO)
42         cd kvmfornfv; \
43         git checkout $(KVMFORNFV_BRANCH); \
44         if [ ! -z $(KVMFORNFV_CHANGE) ]; then \
45            git fetch $(KVMFORNFV_REPO) $(KVMFORNFV_CHANGE); \
46            git checkout FETCH_HEAD; \
47         fi
48         cd kvmfornfv/fuel-plugin; \
49         INCLUDE_DEPENDENCIES=true fpb --debug --build ./
50         @mv kvmfornfv/fuel-plugin/fuel-plugin-kvm*.rpm .
51         $(REPOINFO) -r . > gitinfo_kvm-plugin.txt
52         # fix me
53         @sudo rm -rf kvmfornfv
54         @touch .kvmbuild
55         # Store artifact in cache straight away if caching is enabled
56         # (no .cacheid will be present unless this is a cached build)
57         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
58
59 #############################################################################
60 # Cache operations - only used when building through ci/build.sh
61 #############################################################################
62
63
64 # Create a unique hash to be used for getting and putting cache, based on:
65 #   - The SHA1 hash of the HEAD on the plugin repo's $(KVMFORNFV_BRANCH)
66 #   - The contents of this Makefile
67 .cacheid:
68         @if [ ! -z $(KVMFORNFV_CHANGE) ]; then \
69           $(CACHETOOL) getcommitid $(KVMFORNFV_REPO) $(KVMFORNFV_CHANGE) > .cachedata; \
70         else \
71           $(CACHETOOL) getcommitid $(KVMFORNFV_REPO) $(KVMFORNFV_BRANCH) > .cachedata; \
72         fi
73         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
74         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
75         @cat .cachedata | $(CACHETOOL) getid > .cacheid
76
77 # Clean local data related to caching - called prior to ordinary build
78 .PHONY: clean-cache
79 clean-cache: clean
80         @rm -f .cachedata .cacheid
81
82 # Try to download cache - called prior to ordinary build
83 .PHONY: get-cache
84 get-cache: .cacheid
85         @if $(CACHETOOL) check $(shell cat .cacheid); then \
86                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
87         else \
88                 echo "No cache item found for $(shell cat .cacheid)" ;\
89                 exit 0;\
90         fi
91
92 # Store cache if not already stored - called after ordinary build
93 .PHONY: put-cache
94 put-cache: .cacheid
95         @tar cf - .kvmbuild fuel-plugin-kvm*.rpm gitinfo_kvm-plugin.txt | $(CACHETOOL) put $(shell cat .cacheid)