Update Host OS NTP Servers to pool.ntp.org
[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
12 include config.mk
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         @rm -rf fuel-plugins
22
23 .PHONY: release
24 release:.odlbuild
25         @rm -f ../release/opnfv/opendaylight*.rpm
26         @mkdir -p ../release/opnfv
27         @cp opendaylight*.rpm ../release/opnfv/
28         cp gitinfo_odlplugin.txt $(BUILD_BASE)
29 .odlbuild:
30         rm -rf fuel-plugin-opendaylight
31         ../../docker/ubuntu-builder/install_docker.sh
32         git clone -b $(FUEL_PLUGIN_ODL_BRANCH) $(FUEL_PLUGIN_ODL_REPO)
33         cd fuel-plugin-opendaylight; \
34         if [ -n $(FUEL_PLUGIN_ODL_CHANGE) ]; then \
35            git checkout $(FUEL_PLUGIN_ODL_CHANGE); \
36         fi
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 $(FUEL_PLUGIN_ODL_BRANCH)
53 #   - The contents of this Makefile
54 .cacheid:
55         if [ -n $(FUEL_PLUGIN_ODL_CHANGE) ]; then \
56           $(CACHETOOL) getcommitid $(FUEL_PLUGIN_ODL_REPO) $(FUEL_PLUGIN_ODL_CHANGE) > .cachedata; \
57         else \
58           $(CACHETOOL) getcommitid $(FUEL_PLUGIN_ODL_REPO) $(FUEL_PLUGIN_ODL_BRANCH) > .cachedata; \
59         fi
60         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
61         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
62         @echo -n $(UBUNTU_ARCH) | sha1sum | awk {'print $$1'} >> .cachedata
63         cat .cachedata | $(CACHETOOL) getid > .cacheid
64
65 # Clean local data related to caching - called prior to ordinary build
66 .PHONY: clean-cache
67 clean-cache: clean
68         rm -f .cachedata .cacheid
69
70 # Try to download cache - called prior to ordinary build
71 .PHONY: get-cache
72 get-cache: .cacheid
73         @if $(CACHETOOL) check $(shell cat .cacheid); then \
74                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
75         else \
76                 echo "No cache item found for $(shell cat .cacheid)" ;\
77                 exit 0;\
78         fi
79
80 # Store cache if not already stored - called after ordinary build
81 .PHONY: put-cache
82 put-cache: .cacheid
83         @tar cf - .odlbuild opendaylight*.rpm gitinfo_odlplugin.txt | $(CACHETOOL) put $(shell cat .cacheid)