bb4b19cc8d39fd9f8c2f34d3da080b7125fe16fb
[fuel.git] / build / f_isoroot / f_collectd-ceilometer-pluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2016 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: .barometer
23
24 .PHONY: clean
25 clean:
26         @rm -f .barometer ../release/opnfv/fuel-plugin-collectd-ceilometer-*.rpm fuel-plugin-collectd-ceilometer-*.rpm
27         @rm -f $(BUILD_BASE)/gitinfo_collectd-ceilometer-plugin.txt gitinfo_collectd-ceilometer-plugin.txt
28
29 .PHONY: release
30 release:.barometer
31         @rm -f ../release/opnfv/fuel-plugin-collectd-ceilometer-*.rpm
32         @mkdir -p ../release/opnfv
33         @cp fuel-plugin-collectd-ceilometer*.rpm ../release/opnfv/
34         cp gitinfo_collectd-ceilometer-plugin.txt $(BUILD_BASE)
35
36 .barometer:
37         @rm -rf barometer
38         ../../docker/ubuntu-builder/install_docker.sh
39         git clone $(COLLECTD_CEILOMETER_REPO)
40         cd barometer; \
41         git checkout $(COLLECTD_CEILOMETER_BRANCH); \
42         if [ ! -z $(COLLECTD_CEILOMETER_CHANGE) ]; then \
43            git fetch $(COLLECTD_CEILOMETER_REPO) $(COLLECTD_CEILOMETER_CHANGE); \
44            git checkout FETCH_HEAD; \
45         fi
46         fpb --debug --build barometer/src/fuel-plugin
47         @mv barometer/src/fuel-plugin/fuel-plugin-collectd-ceilometer*.rpm .
48         $(REPOINFO) -r . > gitinfo_collectd-ceilometer-plugin.txt
49         @rm -rf barometer
50         @touch .barometer
51         # Store artifact in cache straight away if caching is enabled
52         # (no .cacheid will be present unless this is a cached build)
53         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
54
55 #############################################################################
56 # Cache operations - only used when building through ci/build.sh
57 #############################################################################
58
59
60 # Create a unique hash to be used for getting and putting cache, based on:
61 #   - The SHA1 hash of the HEAD on the plugin repo's $(COLLECTD_CEILOMETER_BRANCH)
62 #   - The contents of this Makefile
63 .cacheid:
64         @if [ ! -z $(COLLECTD_CEILOMETER_CHANGE) ]; then \
65           $(CACHETOOL) getcommitid $(COLLECTD_CEILOMETER_REPO) $(COLLECTD_CEILOMETER_CHANGE) > .cachedata; \
66         else \
67           $(CACHETOOL) getcommitid $(COLLECTD_CEILOMETER_REPO) $(COLLECTD_CEILOMETER_BRANCH) > .cachedata; \
68         fi
69         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
70         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
71         @echo -n $(UBUNTU_ARCH) | sha1sum | 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 - .barometer fuel-plugin-collectd-ceilometer*.rpm gitinfo_collectd-ceilometer-plugin.txt | $(CACHETOOL) put $(shell cat .cacheid)