Adding patch for Broadcast Storm of vpnservice
[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
22 .PHONY: release
23 release:.odlbuild
24         @rm -f ../release/opnfv/opendaylight*.rpm
25         @mkdir -p ../release/opnfv
26         @cp opendaylight*.rpm ../release/opnfv/
27         cp gitinfo_odlplugin.txt $(BUILD_BASE)
28 .odlbuild:
29         rm -rf fuel-plugin-opendaylight
30         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
31         sudo gem install fpm
32         sudo pip install fuel-plugin-builder
33         git clone -b $(ODL_BRANCH) $(ODL_REPO)
34         cd fuel-plugin-opendaylight; \
35         if [ -n $(ODL_CHANGE) ]; then \
36            git checkout $(ODL_CHANGE); \
37         fi
38         fpb --debug --build fuel-plugin-opendaylight/
39         mv fuel-plugin-opendaylight/opendaylight*.rpm .
40         $(REPOINFO) -r . > gitinfo_odlplugin.txt
41         rm -rf fuel-plugin-opendaylight
42         touch .odlbuild
43         # Store artifact in cache straight away if caching is enabled
44         # (no .cacheid will be present unless this is a cached build)
45         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
46
47 #############################################################################
48 # Cache operations - only used when building through ci/build.sh
49 #############################################################################
50
51
52 # Create a unique hash to be used for getting and putting cache, based on:
53 #   - The SHA1 hash of the HEAD on the plugin repo's $(ODL_BRANCH)
54 #   - The contents of this Makefile
55 .cacheid:
56         if [ -n $(ODL_CHANGE) ]; then \
57           $(CACHETOOL) getcommitid $(ODL_REPO) $(ODL_CHANGE) > .cachedata; \
58         else \
59           $(CACHETOOL) getcommitid $(ODL_REPO) $(ODL_BRANCH) > .cachedata; \
60         fi
61         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
62         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
63         cat .cachedata | $(CACHETOOL) getid > .cacheid
64
65 # Clean local data related to caching - called prior to ordinary build
66 .PHONY: clean-cache
67 clean-cache: clean
68         rm -f .cachedata .cacheid
69
70 # Try to download cache - called prior to ordinary build
71 .PHONY: get-cache
72 get-cache: .cacheid
73         @if $(CACHETOOL) check $(shell cat .cacheid); then \
74                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
75         else \
76                 echo "No cache item found for $(shell cat .cacheid)" ;\
77                 exit 0;\
78         fi
79
80 # Store cache if not already stored - called after ordinary build
81 .PHONY: put-cache
82 put-cache: .cacheid
83         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)