From c9c6d76ef8aa274ea27f161787344d0ab4fc39ad Mon Sep 17 00:00:00 2001 From: grvvy Date: Wed, 17 Jul 2024 11:30:31 -0600 Subject: [PATCH] ci: use repository URL instead of relying on jenkins environment variables --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 24886a8f..043585f6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('Build Docker Image') { steps { - sh 'docker build -t hackrf $GIT_URL' + sh 'docker build -t hackrf https://github.com/greatscottgadgets/hackrf.git' } } stage('Test Suite') {