fix container image and use latest code 46/72646/1
authorLuc Provoost <luc.provoost@intel.com>
Tue, 8 Jun 2021 11:37:55 +0000 (13:37 +0200)
committerLuc Provoost <luc.provoost@intel.com>
Tue, 8 Jun 2021 11:37:55 +0000 (13:37 +0200)
The container image was not containing a working prox executable any
more.
Also took out the commit id, so we always have the latest prox code in
the latest container image

Change-Id: I4336e06031d5bf5b3f08f4bc32b76703fde34040
Signed-off-by: Luc Provoost <luc.provoost@intel.com>
VNFs/DPPD-PROX/helper-scripts/rapid/deploycentostools.sh

index f4d92d8..c50d796 100644 (file)
 # Directory for package build
 BUILD_DIR="/opt/rapid"
 DPDK_VERSION="20.05"
-PROX_COMMIT="8442f6a8ce0962d818b7cd800150980c65983719"
-PROX_CHECKOUT="git checkout ${PROX_COMMIT}"
-## Next line is overruling the PROX_COMMIT and will replace the version with a very specific patch. Should be commented out
-##     if you want to use a committed version of PROX with the COMMIT ID specified above
-## As an example: Following line has the commit for testing IMIX, IPV6, ... It is the merge of all PROX commits on May 27th 2020
-#PROX_CHECKOUT="git fetch \"https://gerrit.opnfv.org/gerrit/samplevnf\" refs/changes/23/70223/1 && git checkout FETCH_HEAD"
 MULTI_BUFFER_LIB_VER="0.52"
-export RTE_SDK="${BUILD_DIR}/dpdk"
-export RTE_TARGET="build"
+export RTE_SDK="${BUILD_DIR}/dpdk-${DPDK_VERSION}"
+export RTE_TARGET="x86_64-native-linuxapp-gcc"
 
 # By default, do not update OS
 OS_UPDATE="n"
@@ -167,6 +161,8 @@ function prox_compile()
 {
     # Compile PROX
     pushd ${BUILD_DIR}/samplevnf/VNFs/DPPD-PROX
+    COMMIT_ID=$(git rev-parse HEAD)
+    echo "${COMMIT_ID}" > ${BUILD_DIR}/commit_id
     make -j`getconf _NPROCESSORS_ONLN`
     ${SUDO} cp ${BUILD_DIR}/samplevnf/VNFs/DPPD-PROX/build/app/prox ${BUILD_DIR}/prox
     popd > /dev/null 2>&1
@@ -177,8 +173,6 @@ function prox_install()
     # Clone PROX
     pushd ${BUILD_DIR} > /dev/null 2>&1
     git clone https://git.opnfv.org/samplevnf
-    bash -c "${PROX_CHECKOUT}"
-    echo "${PROX_CHECKOUT}" > ${BUILD_DIR}/commit_id
     cp -R ./samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid ./src
     popd > /dev/null 2>&1
     prox_compile