f_odlpluginbuild: Force .cacheid change
[fuel.git] / build / f_isoroot / f_congress-pluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2016 Mirantis Inc and others.
3 # fzhadaev@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 ############################################################################
13 # BEGIN of Include definitions
14 #
15 include config.mk
16 #
17 # END Include definitions
18 #############################################################################
19
20
21 .PHONY: all
22 all: .congressbuild
23
24 .PHONY: clean
25 clean:
26         @rm -f .congressbuild ../release/opnfv/congress*.rpm congress*.rpm
27         @rm -f $(BUILD_BASE)/gitinfo_congressplugin.txt gitinfo_congressplugin.txt
28
29 .PHONY: release
30 release:.congressbuild
31         @rm -f ../release/opnfv/congress*.rpm
32         @mkdir -p ../release/congress
33         @cp congress*.rpm ../release/opnfv/
34         cp gitinfo_congressplugin.txt $(BUILD_BASE)
35
36 .congressbuild:
37         rm -rf fuel-plugin-congress
38         git clone $(CONGRESS_REPO)
39         cd fuel-plugin-congress; \
40         git checkout $(CONGRESS_BRANCH); \
41         if [ ! -z $(CONGRESS_CHANGE) ]; then \
42            git fetch $(CONGRESS_REPO) $(CONGRESS_CHANGE); \
43            git checkout FETCH_HEAD; \
44         fi
45         fpb --debug --build fuel-plugin-congress/
46         @mv fuel-plugin-congress/congress*.rpm .
47         $(REPOINFO) -r . > gitinfo_congressplugin.txt
48         @rm -rf fuel-plugin-congress
49         @touch .congressbuild
50         # Store artifact in cache straight away if caching is enabled
51         # (no .cacheid will be present unless this is a cached build)
52         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
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 $(CONGRESS_BRANCH)
61 #   - The contents of this Makefile
62 .cacheid:
63         @if [ ! -z $(CONGRESS_CHANGE) ]; then \
64           $(CACHETOOL) getcommitid $(CONGRESS_REPO) $(CONGRESS_CHANGE) > .cachedata; \
65         else \
66           $(CACHETOOL) getcommitid $(CONGRESS_REPO) $(CONGRESS_BRANCH) > .cachedata; \
67         fi
68         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
69         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
70         @echo -n $(UBUNTU_ARCH) | sha1sum | awk {'print $$1'} >> .cachedata
71         @cat .cachedata | $(CACHETOOL) getid > .cacheid
72
73 # Clean local data related to caching - called prior to ordinary build
74 .PHONY: clean-cache
75 clean-cache: clean
76         @rm -f .cachedata .cacheid
77
78 # Try to download cache - called prior to ordinary build
79 .PHONY: get-cache
80 get-cache: .cacheid
81         @if $(CACHETOOL) check $(shell cat .cacheid); then \
82                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
83         else \
84                 echo "No cache item found for $(shell cat .cacheid)" ;\
85                 exit 0;\
86         fi
87
88 # Store cache if not already stored - called after ordinary build
89 .PHONY: put-cache
90 put-cache: .cacheid
91         @tar cf - .congressbuild congress*.rpm gitinfo_congressplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)