Merge "Smaller non-HA virtual deployment template"
[fuel.git] / build / f_isoroot / f_ovs-nsh-dpdk-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: .ovsbuild
22
23 .PHONY: clean
24 clean:
25         @rm -f .ovsbuild ../release/opnfv/fuel-plugin-ovs*.rpm fuel-plugin-ovs*.rpm
26         @rm -f $(BUILD_BASE)/gitinfo_ovs-nsh-dpdk-plugin.txt gitinfo_ovs-nsh-dpdk-plugin.txt
27
28 .PHONY: release
29 release:.ovsbuild
30         @rm -f ../release/opnfv/fuel-plugin-ovs*.rpm
31         @mkdir -p ../release/opnfv
32         @cp fuel-plugin-ovs*.rpm ../release/opnfv/
33         cp gitinfo_ovs-nsh-dpdk-plugin.txt $(BUILD_BASE)
34         cd $(BUILD_BASE) && mkdir -p ../deploy/templates/plugins && cp -rf $(TOP)/config/* ../deploy/templates/plugins
35
36 .ovsbuild:
37         @rm -rf fuel-plugin-ovs
38         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
39         sudo gem install fpm
40         sudo pip install fuel-plugin-builder
41         git clone $(OVS_NSH_DPDK_REPO)
42         cd fuel-plugin-ovs; \
43         git checkout $(OVS_NSH_DPDK_BRANCH); \
44         if [ ! -z $(OVS_NSH_DPDK_CHANGE) ]; then \
45            git fetch $(OVS_NSH_DPDK_REPO) $(OVS_NSH_DPDK_CHANGE); \
46            git checkout FETCH_HEAD; \
47         fi
48         INCLUDE_DEPENDENCIES=true fpb --debug --build fuel-plugin-ovs/
49         @mv fuel-plugin-ovs/fuel-plugin-ovs*.rpm .
50         $(REPOINFO) -r . > gitinfo_ovs-nsh-dpdk-plugin.txt
51         @rm -rf fuel-plugin-ovs
52         @touch .ovsbuild
53
54 #############################################################################
55 # Cache operations - only used when building through ci/build.sh
56 #############################################################################
57
58
59 # Create a unique hash to be used for getting and putting cache, based on:
60 #   - The SHA1 hash of the HEAD on the plugin repo's $(OVS_NSH_DPDK_BRANCH)
61 #   - The contents of this Makefile
62 .cacheid:
63         @git ls-remote --heads $(OVS_NSH_DPDK_REPO) | grep $(OVS_NSH_DPDK_BRANCH) | awk {'print $$1'} > .cachedata
64         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
65         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
66         @cat .cachedata | $(CACHETOOL) getid > .cacheid
67
68 # Clean local data related to caching - called prior to ordinary build
69 .PHONY: clean-cache
70 clean-cache: clean
71         @rm -f .cachedata .cacheid
72
73 # Try to download cache - called prior to ordinary build
74 .PHONY: get-cache
75 get-cache: .cacheid
76         @if $(CACHETOOL) check $(shell cat .cacheid); then \
77                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
78         else \
79                 echo "No cache item found for $(shell cat .cacheid)" ;\
80                 exit 0;\
81         fi
82
83 # Store cache if not already stored - called after ordinary build
84 .PHONY: put-cache
85 put-cache: .cacheid
86         @tar cf - .ovsbuild fuel-plugin-ovs*.rpm gitinfo_ovs-nsh-dpdk-plugin.txt | $(CACHETOOL) put $(shell cat .cacheid)