From 33b81c59327cfca7cd12cd3698e56c165b185d4b Mon Sep 17 00:00:00 2001 From: "aiyion.prime" Date: Sat, 29 Jun 2024 20:47:43 +0200 Subject: [PATCH] feat: Cease installing build dependencies which is now taken care of in the docker agent image. --- Jenkinsfile | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7e47738..01905c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,25 +1,6 @@ pipeline { agent { label 'linux' } stages { - stage('Install dependencies') { - steps { - sh 'sudo apt update' - sh 'sudo apt install git' - sh 'sudo apt install python3' - sh 'sudo apt install build-essential' - sh 'sudo apt install ecdsautils' - sh 'sudo apt install gawk' - sh 'sudo apt install unzip' - sh 'sudo apt install libncurses-dev' - sh 'sudo apt install libz-dev' - sh 'sudo apt install libssl-dev' - sh 'sudo apt install libelf-dev' - sh 'sudo apt install wget' - sh 'sudo apt install rsync' - sh 'sudo apt install time' - sh 'sudo apt install qemu-utils' - } - } stage('Clone gluon') { steps { dir('gluon') {