Merge "Fix wget failure in fue@opnfv"
[fuel.git] / build / f_isoroot / f_yardstick-pluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # jonas.bjurel@eicsson.com
4 # ruijing.guo@intel.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 TOP := $(shell pwd)
12
13 ############################################################################
14 # BEGIN of Include definitions
15 #
16 include config.mk
17 #
18 # END Include definitions
19 #############################################################################
20
21 .PHONY: all
22 all: .yardstickbuild
23
24 .PHONY: clean
25 clean:
26         @rm -f .yardstickbuild ../release/opnfv/fuel-plugin-yardstick*.rpm fuel-plugin-yardstick*.rpm
27         @rm -f $(BUILD_BASE)/gitinfo_yardstick-plugin.txt gitinfo_yardstick-plugin.txt
28
29 .PHONY: release
30 release:.yardstickbuild
31         @rm -f ../release/opnfv/fuel-plugin-yardstick*.rpm
32         @mkdir -p ../release/opnfv
33         @cp fuel-plugin-yardstick*.rpm ../release/opnfv/
34         cp gitinfo_yardstick-plugin.txt $(BUILD_BASE)
35
36 .yardstickbuild:
37         @rm -rf yardstick
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         git clone $(YARDSTICK_REPO) yardstick
41         cd yardstick; \
42         git checkout $(YARDSTICK_BRANCH); \
43         if [ ! -z $(YARDSTICK_CHANGE) ]; then \
44            git fetch $(YARDSTICK_REPO) $(YARDSTICK_CHANGE); \
45            git checkout FETCH_HEAD; \
46         fi
47         cd yardstick; \
48         INCLUDE_DEPENDENCIES=true fpb --debug --build fuel-plugin/
49         @mv yardstick/fuel-plugin/fuel-plugin-yardstick*.rpm .
50         $(REPOINFO) -r . > gitinfo_yardstick-plugin.txt
51         @rm -rf fuel-plugin-yardstick
52         @touch .yardstickbuild
53         # Store artifact in cache straight away if caching is enabled
54         # (no .cacheid will be present unless this is a cached build)
55         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
56
57 #############################################################################
58 # Cache operations - only used when building through ci/build.sh
59 #############################################################################
60
61
62 # Create a unique hash to be used for getting and putting cache, based on:
63 #   - The SHA1 hash of the HEAD on the plugin repo's $(YARDSTICK_BRANCH)
64 #   - The contents of this Makefile
65 .cacheid:
66         @if [ ! -z $(YARDSTICK_CHANGE) ]; then \
67           $(CACHETOOL) getcommitid $(YARDSTICK_REPO) $(YARDSTICK_CHANGE) > .cachedata; \
68         else \
69           $(CACHETOOL) getcommitid $(YARDSTICK_REPO) $(YARDSTICK_BRANCH) > .cachedata; \
70         fi
71         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
72         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
73         @cat .cachedata | $(CACHETOOL) getid > .cacheid
74
75 # Clean local data related to caching - called prior to ordinary build
76 .PHONY: clean-cache
77 clean-cache: clean
78         @rm -f .cachedata .cacheid
79
80 # Try to download cache - called prior to ordinary build
81 .PHONY: get-cache
82 get-cache: .cacheid
83         @if $(CACHETOOL) check $(shell cat .cacheid); then \
84                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
85         else \
86                 echo "No cache item found for $(shell cat .cacheid)" ;\
87                 exit 0;\
88         fi
89
90 # Store cache if not already stored - called after ordinary build
91 .PHONY: put-cache
92 put-cache: .cacheid
93         @tar cf - .yardstickbuild fuel-plugin-yardstick*.rpm gitinfo_yardstick-plugin.txt | $(CACHETOOL) put $(shell cat .cacheid)