From e5632e76af93e02dc3221581e41741ccb36d248a Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Tue, 29 Nov 2016 17:30:18 +0100 Subject: build/f_repos: Fix remote tracking, pin N HEADs Fix two issues that went undetected until now: - remote tracking variable does not properly evaluate in CI, since there is no HEAD reference; - git submodules references still point to master branch(es) commits, although .gitmodules configure the remote tracked branch correctly; JIRA: FUEL-234 Change-Id: I96dc704e2cfe98f2e93d5fa7d7dd261e7f151238 Signed-off-by: Alexandru Avadanii --- build/f_repos/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build/f_repos/Makefile') diff --git a/build/f_repos/Makefile b/build/f_repos/Makefile index b5eafff9b..be6f82909 100644 --- a/build/f_repos/Makefile +++ b/build/f_repos/Makefile @@ -34,8 +34,7 @@ include ../config.mk # To enable remote tracking, set the following var to any non-empty string. # Leaving this var empty will bind each git submodule to its saved commit. -# NOTE: For non-stable branches, unless overriden, always track remotes -FUEL_TRACK_REMOTES ?= $(shell git symbolic-ref --short HEAD | grep -v stable) +FUEL_TRACK_REMOTES ?= yes .PHONY: all all: release -- cgit 1.2.3-korg