Fixed deployment timeout and OVSNFV plugin build
[fuel.git] / build / f_isoroot / f_ovsnfv-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: .ovsnfvbuild
22
23 .PHONY: clean
24 clean:
25         @rm -f .ovsnfvbuild ../release/opnfv/fuel-plugin-ovsnfv-*.rpm fuel-plugin-ovsnfv-*.rpm
26         @rm -f $(BUILD_BASE)/gitinfo_ovsnfv-dpdk-plugin.txt gitinfo_ovsnfv-dpdk-plugin.txt
27
28 .PHONY: release
29 release:.ovsnfvbuild
30         @rm -f ../release/opnfv/fuel-plugin-ovsnfv-*.rpm
31         @mkdir -p ../release/opnfv
32         @cp fuel-plugin-ovsnfv*.rpm ../release/opnfv/
33         cp gitinfo_ovsnfv-dpdk-plugin.txt $(BUILD_BASE)
34
35 .ovsnfvbuild:
36         @rm -rf ovsnfv
37         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
38         sudo pip install fuel-plugin-builder
39         git clone $(OVSNFV_DPDK_REPO) ovsnfv
40         cd ovsnfv; \
41         git checkout $(OVSNFV_DPDK_BRANCH); \
42         if [ ! -z $(OVSNFV_DPDK_CHANGE) ]; then \
43            git fetch $(OVSNFV_DPDK_REPO) $(OVSNFV_DPDK_CHANGE); \
44            git checkout FETCH_HEAD; \
45         fi
46         cd ovsnfv; \
47         INCLUDE_DEPENDENCIES=true fpb --debug --build $(OVSNFV_DPDK_DIR)
48         @mv ovsnfv/$(OVSNFV_DPDK_DIR)/fuel-plugin-ovsnfv*.rpm .
49         $(REPOINFO) -r . > gitinfo_ovsnfv-dpdk-plugin.txt
50         @rm -rf ovsnfv
51         @touch .ovsnfvbuild
52         # Store artifact in cache straight away if caching is enabled
53         # (no .cacheid will be present unless this is a cached build)
54         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
55
56 #############################################################################
57 # Cache operations - only used when building through ci/build.sh
58 #############################################################################
59
60
61 # Create a unique hash to be used for getting and putting cache, based on:
62 #   - The SHA1 hash of the HEAD on the plugin repo's $(OVSNFV_DPDK_BRANCH)
63 #   - The contents of this Makefile
64 .cacheid:
65         @if [ ! -z $(OVSNFV_DPDK_CHANGE) ]; then \
66           $(CACHETOOL) getcommitid $(OVSNFV_DPDK_REPO) $(OVSNFV_DPDK_CHANGE) > .cachedata; \
67         else \
68           $(CACHETOOL) getcommitid $(OVSNFV_DPDK_REPO) $(OVSNFV_DPDK_BRANCH) > .cachedata; \
69         fi
70         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
71         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
72         @cat .cachedata | $(CACHETOOL) getid > .cacheid
73
74 # Clean local data related to caching - called prior to ordinary build
75 .PHONY: clean-cache
76 clean-cache: clean
77         @rm -f .cachedata .cacheid
78
79 # Try to download cache - called prior to ordinary build
80 .PHONY: get-cache
81 get-cache: .cacheid
82         @if $(CACHETOOL) check $(shell cat .cacheid); then \
83                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
84         else \
85                 echo "No cache item found for $(shell cat .cacheid)" ;\
86                 exit 0;\
87         fi
88
89 # Store cache if not already stored - called after ordinary build
90 .PHONY: put-cache
91 put-cache: .cacheid
92         @tar cf - .ovsnfvbuild fuel-plugin-ovsnfv*.rpm gitinfo_ovsnfv-dpdk-plugin.txt | $(CACHETOOL) put $(shell cat .cacheid)