summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorjuraj.linkes <juraj.linkes@pantheon.tech>2019-08-13 16:38:52 +0200
committerjuraj.linkes <juraj.linkes@pantheon.tech>2019-10-04 08:16:54 +0200
commit67000119a6c34617805749e364cc58ef263994b1 (patch)
treed182ed9b58db2dd5eacc1eeb58399f79a4f51b55 /jjb
parentf75c8faf7b760884d0de67b4e6c1b53986e0c039 (diff)
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 <juraj.linkes@pantheon.tech>
Diffstat (limited to 'jjb')
-rw-r--r--jjb/vpp/include-raw-vpp-arm-build-no-test.sh6
-rw-r--r--jjb/vpp/include-raw-vpp-clang-build.sh8
2 files changed, 7 insertions, 7 deletions
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 "*******************************************************************"