Revert "Switch all platforms artifacts to use the new build system"

This reverts commit 95c7ecd562029d7ff23ec303ba281234831a0d57.
diff --git a/run-build.sh b/run-build.sh
index d32b452..da571a7 100755
--- a/run-build.sh
+++ b/run-build.sh
@@ -53,3 +53,28 @@
 cd ../trusted-firmware-m/build
 
 eval "set -ex ; $build_commands"
+
+# TODO: Remove the copy logic when LAVA server could read artifacts directly generated by new build system
+set +e
+
+mkdir install/outputs/fvp
+cp -r bin/* install/outputs/fvp/
+
+cd install/outputs
+cp -r CYPRESS/* .
+cp -r MPS2/* .
+cp -r MPS3/* .
+
+for file in `find | grep bl2`
+do
+	newfile=`echo $file | sed "s/bl2/mcuboot/g"`
+	cp $file $newfile
+done
+
+for file in `find | grep s_ns_signed`
+do
+	newfile=`echo $file | sed "s/s_ns_signed/sign/g"`
+	cp $file $newfile
+done
+
+set -e