Support for building Fuel behind a http proxy
[fuel.git] / fuel / 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=juno/lithium-sr1
12 ODL_REPO="https://github.com/stackforge/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
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         INCLUDE_DEPENDENCIES=true 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
41 #############################################################################
42 # Cache operations - only used when building through ci/build.sh
43 #############################################################################
44
45
46 # Create a unique hash to be used for getting and putting cache, based on:
47 #   - The SHA1 hash of the HEAD on the plugin repo's $(ODL_BRANCH)
48 #   - The contents of this Makefile
49 .cacheid:
50         git ls-remote --heads $(ODL_REPO) | grep $(ODL_BRANCH) > .cachedata
51         sha1sum Makefile >> .cachedata
52         cat .cachedata | $(CACHETOOL) getid > .cacheid
53
54 # Clean local data related to caching - called prior to ordinary build
55 .PHONY: clean-cache
56 clean-cache: clean
57         rm -f .cachedata .cacheid
58
59 # Try to download cache - called prior to ordinary build
60 .PHONY: get-cache
61 get-cache: .cacheid
62         @if $(CACHETOOL) check $(shell cat .cacheid); then \
63                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
64         else \
65                 echo "No cache item found for $(shell cat .cacheid)" ;\
66                 exit 0;\
67         fi
68
69 # Store cache if not already stored - called after ordinary build
70 .PHONY: put-cache
71 put-cache: .cacheid
72         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)