Merge "Applying ODL changes to BGPVPN scenario"
[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 export USE_JAVA8=true
15 export JAVA8_URL=https://launchpad.net/~openjdk-r/+archive/ubuntu/ppa/+files/openjdk-8-jre-headless_8u72-b15-1~trusty1_amd64.deb
16
17 .PHONY: all
18 all: .odlbuild
19
20 .PHONY: clean
21 clean:
22         @rm -f .odlbuild ../release/opnfv/opendaylight*.rpm opendaylight*.rpm
23         @rm -f $(BUILD_BASE)/gitinfo_odlplugin.txt gitinfo_odlplugin.txt
24
25 .PHONY: release
26 release:.odlbuild
27         @rm -f ../release/opnfv/opendaylight*.rpm
28         @mkdir -p ../release/opnfv
29         @cp opendaylight*.rpm ../release/opnfv/
30         cp gitinfo_odlplugin.txt $(BUILD_BASE)
31 .odlbuild:
32         rm -rf fuel-plugin-opendaylight
33         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
34         sudo gem install fpm
35         sudo pip install fuel-plugin-builder
36         git clone -b $(ODL_BRANCH) $(ODL_REPO)
37         fpb --debug --build fuel-plugin-opendaylight/
38         mv fuel-plugin-opendaylight/opendaylight*.rpm .
39         $(REPOINFO) -r . > gitinfo_odlplugin.txt
40         rm -rf fuel-plugin-opendaylight
41         touch .odlbuild
42         # Store artifact in cache straight away if caching is enabled
43         # (no .cacheid will be present unless this is a cached build)
44         test -f .cacheid && $(MAKE) -f Makefile put-cache || exit 0
45
46 #############################################################################
47 # Cache operations - only used when building through ci/build.sh
48 #############################################################################
49
50
51 # Create a unique hash to be used for getting and putting cache, based on:
52 #   - The SHA1 hash of the HEAD on the plugin repo's $(ODL_BRANCH)
53 #   - The contents of this Makefile
54 .cacheid:
55         @$(CACHETOOL) getcommitid $(ODL_REPO) $(ODL_BRANCH) > .cachedata
56         sha1sum Makefile >> .cachedata
57         cat .cachedata | $(CACHETOOL) getid > .cacheid
58
59 # Clean local data related to caching - called prior to ordinary build
60 .PHONY: clean-cache
61 clean-cache: clean
62         rm -f .cachedata .cacheid
63
64 # Try to download cache - called prior to ordinary build
65 .PHONY: get-cache
66 get-cache: .cacheid
67         @if $(CACHETOOL) check $(shell cat .cacheid); then \
68                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
69         else \
70                 echo "No cache item found for $(shell cat .cacheid)" ;\
71                 exit 0;\
72         fi
73
74 # Store cache if not already stored - called after ordinary build
75 .PHONY: put-cache
76 put-cache: .cacheid
77         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)