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