Merge "Fix ssl cert upload path"
[fuel.git] / build / f_isoroot / f_bgpvpn-pluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # jonas.bjurel@ericsson.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: .bgpvpnbuild
23
24 .PHONY: clean
25 clean:
26         @rm -f .bgpvpnbuild ../release/opnfv/bgpvpn*.rpm bgpvpn*.rpm
27         @rm -f $(BUILD_BASE)/gitinfo_bgpvpnplugin.txt gitinfo_bgpvpnplugin.txt
28
29 .PHONY: release
30 release:.bgpvpnbuild
31         @rm -f ../release/opnfv/bgpvpn*.rpm
32         @mkdir -p ../release/bgpvpn
33         @cp bgpvpn*.rpm ../release/opnfv/
34         cp gitinfo_bgpvpnplugin.txt $(BUILD_BASE)
35
36 .bgpvpnbuild:
37         # The python packages build into deb by this plugin require a newer
38         # setuptools install a newer setuptools version until the container
39         # where this is run is bumped to ubuntu 16.04.
40         # --user is used because there is already a setuptools installation
41         #  managed by apt.
42         pip install setuptools --upgrade --user
43         rm -rf fuel-plugin-bgpvpn
44         git clone $(BGPVPN_REPO)
45         cd fuel-plugin-bgpvpn; \
46         git checkout $(BGPVPN_BRANCH); \
47         if [ ! -z $(BGPVPN_CHANGE) ]; then \
48            git fetch $(BGPVPN_REPO) $(BGPVPN_CHANGE); \
49            git checkout FETCH_HEAD; \
50         fi
51         fpb --debug --build fuel-plugin-bgpvpn/
52         mv fuel-plugin-bgpvpn/bgpvpn*.rpm .
53         $(REPOINFO) -r . > gitinfo_bgpvpnplugin.txt
54         rm -rf fuel-plugin-bgpvpn
55         touch .bgpvpnbuild
56         # Store artifact in cache straight away if caching is enabled
57         # (no .cacheid will be present unless this is a cached build)
58         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
59
60 #############################################################################
61 # Cache operations - only used when building through ci/build.sh
62 #############################################################################
63
64
65 # Create a unique hash to be used for getting and putting cache, based on:
66 #   - The SHA1 hash of the HEAD on the plugin repo's $(BGPVPN_BRANCH)
67 #   - The contents of this Makefile
68 .cacheid:
69         @if [ ! -z $(BGPVPN_CHANGE) ]; then \
70           $(CACHETOOL) getcommitid $(BGPVPN_REPO) $(BGPVPN_CHANGE) > .cachedata; \
71         else \
72           $(CACHETOOL) getcommitid $(BGPVPN_REPO) $(BGPVPN_BRANCH) > .cachedata; \
73         fi
74         sha1sum Makefile >> .cachedata
75         sha1sum config.mk >> .cachedata
76         echo -n $(UBUNTU_ARCH) | sha1sum | awk {'print $$1'} >> .cachedata
77         cat .cachedata | $(CACHETOOL) getid > .cacheid
78
79 # Clean local data related to caching - called prior to ordinary build
80 .PHONY: clean-cache
81 clean-cache: clean
82         rm -f .cachedata .cacheid
83
84 # Try to download cache - called prior to ordinary build
85 .PHONY: get-cache
86 get-cache: .cacheid
87         @if $(CACHETOOL) check $(shell cat .cacheid); then \
88                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
89         else \
90                 echo "No cache item found for $(shell cat .cacheid)" ;\
91                 exit 0;\
92         fi
93
94 # Store cache if not already stored - called after ordinary build
95 .PHONY: put-cache
96 put-cache: .cacheid
97         @tar cf - .bgpvpnbuild bgpvpn*.rpm gitinfo_bgpvpnplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)