Merge "Sync with recent changes in fuel-main"
[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         # Temporary location of working Be snapshot
36         ODL_TARBALL_LOCATION=http://devel.opt.im/distribution-karaf-0.4.0-20160118.091622-3555.tar.gz 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 $(ODL_BRANCH)
52 #   - The contents of this Makefile
53 .cacheid:
54         @$(CACHETOOL) getcommitid $(ODL_REPO) $(ODL_BRANCH) > .cachedata
55         sha1sum Makefile >> .cachedata
56         cat .cachedata | $(CACHETOOL) getid > .cacheid
57
58 # Clean local data related to caching - called prior to ordinary build
59 .PHONY: clean-cache
60 clean-cache: clean
61         rm -f .cachedata .cacheid
62
63 # Try to download cache - called prior to ordinary build
64 .PHONY: get-cache
65 get-cache: .cacheid
66         @if $(CACHETOOL) check $(shell cat .cacheid); then \
67                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
68         else \
69                 echo "No cache item found for $(shell cat .cacheid)" ;\
70                 exit 0;\
71         fi
72
73 # Store cache if not already stored - called after ordinary build
74 .PHONY: put-cache
75 put-cache: .cacheid
76         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)