From 4d86359a0959c4c1b0a46eefd651b99b33867e00 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Fri, 6 Sep 2019 14:59:08 -0700 Subject: [PATCH] ci: Install socat on the host VM In order to interact between host and guest through socket connection, socat is a useful utility needed for integration testing. Signed-off-by: Sebastien Boeuf --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ab894cfbb..0971211fe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ stage ("Builds") { } stage ('Install system packages') { sh "sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq build-essential mtools libssl-dev pkg-config" - sh "sudo apt-get install -yq flex bison libelf-dev qemu-utils qemu-system libglib2.0-dev libpixman-1-dev libseccomp-dev" + sh "sudo apt-get install -yq flex bison libelf-dev qemu-utils qemu-system libglib2.0-dev libpixman-1-dev libseccomp-dev socat" } stage ('Install Rust') { sh "nohup curl https://sh.rustup.rs -sSf | sh -s -- -y"