Merge "Fix for breaking deployment."
[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-sr2
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 export ODL_TARBALL_LOCATION=https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/distribution-karaf/0.4.1-Beryllium-SR1/distribution-karaf-0.4.1-Beryllium-SR1.tar.gz
17 export ODL_VERSION_NUMBER=0.4.1
18 .PHONY: all
19 all: .odlbuild
20
21 .PHONY: clean
22 clean:
23         @rm -f .odlbuild ../release/opnfv/opendaylight*.rpm opendaylight*.rpm
24         @rm -f $(BUILD_BASE)/gitinfo_odlplugin.txt gitinfo_odlplugin.txt
25
26 .PHONY: release
27 release:.odlbuild
28         @rm -f ../release/opnfv/opendaylight*.rpm
29         @mkdir -p ../release/opnfv
30         @cp opendaylight*.rpm ../release/opnfv/
31         cp gitinfo_odlplugin.txt $(BUILD_BASE)
32 .odlbuild:
33         rm -rf fuel-plugin-opendaylight
34         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
35         sudo gem install fpm
36         sudo pip install fuel-plugin-builder
37         git clone -b $(ODL_BRANCH) $(ODL_REPO)
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         @$(CACHETOOL) getcommitid $(ODL_REPO) $(ODL_BRANCH) > .cachedata
57         sha1sum Makefile >> .cachedata
58         cat .cachedata | $(CACHETOOL) getid > .cacheid
59
60 # Clean local data related to caching - called prior to ordinary build
61 .PHONY: clean-cache
62 clean-cache: clean
63         rm -f .cachedata .cacheid
64
65 # Try to download cache - called prior to ordinary build
66 .PHONY: get-cache
67 get-cache: .cacheid
68         @if $(CACHETOOL) check $(shell cat .cacheid); then \
69                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
70         else \
71                 echo "No cache item found for $(shell cat .cacheid)" ;\
72                 exit 0;\
73         fi
74
75 # Store cache if not already stored - called after ordinary build
76 .PHONY: put-cache
77 put-cache: .cacheid
78         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)