diff options
author | Mauro Sardara <msardara@cisco.com> | 2021-07-16 14:56:33 +0200 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2021-07-20 10:19:58 +0200 |
commit | 80c7eb439f13275365c2d3fd2b6d01d0358d72e1 (patch) | |
tree | b8e5af597d1561c04257bba272d4a1370585c332 /scripts | |
parent | f62e74657d802555db61345eaa46362b09b12e88 (diff) |
HICN-715 Use vpp 21.01.1 when building release artifacts.v21.01-rc1
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Change-Id: I2fdb36e7f52e69984a0894a3684949a7e25d360a
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/functions.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/functions.sh b/scripts/functions.sh index abb34fb7b..d6b3f8003 100644 --- a/scripts/functions.sh +++ b/scripts/functions.sh @@ -38,7 +38,7 @@ else fi VERSION_REGEX="s/v([0-9]+).([0-9]+)(.*)?-([0-9]+)-(g[0-9a-f]+)/\1.\2-release/g" -VPP_VERSION_DEB=$(git describe --long --match "v*" | sed -E ${VERSION_REGEX}) +VPP_VERSION_DEB="21.01.1-release" VPP_VERSION_RPM="${VPP_VERSION_DEB}.x86_64" DEPS_UBUNTU=("build-essential" @@ -118,7 +118,6 @@ function call_once() { function setup() { echo DISTRIBUTION: ${PRETTY_NAME} # export variables depending on the platform we are running - call_once setup_fdio_repo call_once install_deps call_once install_pkgcloud_deps @@ -128,7 +127,6 @@ function setup() { function setup_extras() { echo DISTRIBUTION: ${PRETTY_NAME} # export variables depending on the platform we are running - call_once install_deps call_once install_collectd_headers } |