From ae77c19d2cf33147ec9b03cc4dc7cd8887eed47d Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 22:03:43 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index 2cd6cef..508d623 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -42,8 +42,14 @@ pipeline { sh "git clone https://github.com/Netzwerk-Koenigswinter/gluon-mesh-vpn-wireguard.git" sh "git clone https://github.com/Netzwerk-Koenigswinter/gluon-ffkw-files.git" } - - + } + } + + stage('build'){ + steps{ + dir(gluon) + sh "make update" + sh "make GLUON_TARGET=ar71xx-generic" } }