Merge "Final Colorado document review. - Please review the rendered HTML document...
[fuel.git] / build / f_isoroot / f_odlpluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # mskalski@mirantis.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 include config.mk
13
14 .PHONY: all
15 all: .odlbuild
16
17 .PHONY: clean
18 clean:
19         @rm -f .odlbuild ../release/opnfv/opendaylight*.rpm opendaylight*.rpm
20         @rm -f $(BUILD_BASE)/gitinfo_odlplugin.txt gitinfo_odlplugin.txt
21         @rm -rf fuel-plugins
22
23 .PHONY: release
24 release:.odlbuild
25         @rm -f ../release/opnfv/opendaylight*.rpm
26         @mkdir -p ../release/opnfv
27         @cp opendaylight*.rpm ../release/opnfv/
28         cp gitinfo_odlplugin.txt $(BUILD_BASE)
29 .odlbuild:
30         rm -rf fuel-plugin-opendaylight
31         git clone -b $(FUEL_PLUGIN_ODL_BRANCH) $(FUEL_PLUGIN_ODL_REPO)
32         cd fuel-plugin-opendaylight; \
33         if [ -n $(FUEL_PLUGIN_ODL_CHANGE) ]; then \
34            git checkout $(FUEL_PLUGIN_ODL_CHANGE); \
35         fi
36         fpb --debug --build fuel-plugin-opendaylight/
37         mv fuel-plugin-opendaylight/opendaylight*.rpm .
38         $(REPOINFO) -r . > gitinfo_odlplugin.txt
39         rm -rf fuel-plugin-opendaylight
40         touch .odlbuild
41         # Store artifact in cache straight away if caching is enabled
42         # (no .cacheid will be present unless this is a cached build)
43         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
44
45 #############################################################################
46 # Cache operations - only used when building through ci/build.sh
47 #############################################################################
48
49
50 # Create a unique hash to be used for getting and putting cache, based on:
51 #   - The SHA1 hash of the HEAD on the plugin repo's $(FUEL_PLUGIN_ODL_BRANCH)
52 #   - The contents of this Makefile
53 .cacheid:
54         if [ -n $(FUEL_PLUGIN_ODL_CHANGE) ]; then \
55           $(CACHETOOL) getcommitid $(FUEL_PLUGIN_ODL_REPO) $(FUEL_PLUGIN_ODL_CHANGE) > .cachedata; \
56         else \
57           $(CACHETOOL) getcommitid $(FUEL_PLUGIN_ODL_REPO) $(FUEL_PLUGIN_ODL_BRANCH) > .cachedata; \
58         fi
59         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
60         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
61         @echo -n $(UBUNTU_ARCH) | sha1sum | awk {'print $$1'} >> .cachedata
62         cat .cachedata | $(CACHETOOL) getid > .cacheid
63
64 # Clean local data related to caching - called prior to ordinary build
65 .PHONY: clean-cache
66 clean-cache: clean
67         rm -f .cachedata .cacheid
68
69 # Try to download cache - called prior to ordinary build
70 .PHONY: get-cache
71 get-cache: .cacheid
72         @if $(CACHETOOL) check $(shell cat .cacheid); then \
73                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
74         else \
75                 echo "No cache item found for $(shell cat .cacheid)" ;\
76                 exit 0;\
77         fi
78
79 # Store cache if not already stored - called after ordinary build
80 .PHONY: put-cache
81 put-cache: .cacheid
82         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)