From: juraj.linkes Date: Tue, 13 Aug 2019 14:38:52 +0000 (+0200) Subject: Remove unneccessary PLATFORM vars X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=67000119a6c34617805749e364cc58ef263994b1;p=ci-management.git Remove unneccessary PLATFORM vars The builds are using the default setting, so no reason to set them. The default might actually change in the future, for example when we add cross compilation support as in https://gerrit.fd.io/r/#/c/vpp/+/21035/. Change-Id: I7ae9cd9bb88b5b15049c442a0a6c7aedb0ce90df Signed-off-by: juraj.linkes --- diff --git a/jjb/vpp/include-raw-vpp-arm-build-no-test.sh b/jjb/vpp/include-raw-vpp-arm-build-no-test.sh index 94cc82449..8557dc1e1 100644 --- a/jjb/vpp/include-raw-vpp-arm-build-no-test.sh +++ b/jjb/vpp/include-raw-vpp-arm-build-no-test.sh @@ -39,9 +39,9 @@ echo "CC=${CC}" make UNATTENDED=yes install-dep make UNATTENDED=yes dpdk-install-dev -make UNATTENDED=yes -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages -make UNATTENDED=yes -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install -make UNATTENDED=yes -C build-root PLATFORM=vpp TAG=vpp libmemif-install +make UNATTENDED=yes -C build-root TAG=vpp wipe-all install-packages +make UNATTENDED=yes -C build-root TAG=vpp sample-plugin-install +make UNATTENDED=yes -C build-root TAG=vpp libmemif-install make UNATTENDED=yes pkg-deb if [ "x${VPP_REPO}" == "x1" ]; then diff --git a/jjb/vpp/include-raw-vpp-clang-build.sh b/jjb/vpp/include-raw-vpp-clang-build.sh index 5039d5c30..f1c1422b9 100644 --- a/jjb/vpp/include-raw-vpp-clang-build.sh +++ b/jjb/vpp/include-raw-vpp-clang-build.sh @@ -29,10 +29,10 @@ echo "sha1sum of this script: ${0}" sha1sum $0 make UNATTENDED=yes install-dep -make UNATTENDED=yes dpdk-install-dev -make UNATTENDED=yes -C build-root PLATFORM=vpp TAG=vpp_clang CC=clang CXX=clang install-packages -make UNATTENDED=yes -C build-root PLATFORM=vpp TAG=vpp_clang CC=clang CXX=clang sample-plugin-install -make UNATTENDED=yes -C build-root PLATFORM=vpp TAG=vpp_clang CC=clang CXX=clang libmemif-install +make UNATTENDED=yes install-ext-deps +make UNATTENDED=yes -C build-root TAG=vpp_clang CC=clang CXX=clang install-packages +make UNATTENDED=yes -C build-root TAG=vpp_clang CC=clang CXX=clang sample-plugin-install +make UNATTENDED=yes -C build-root TAG=vpp_clang CC=clang CXX=clang libmemif-install echo "*******************************************************************"