ci: use repository URL instead of relying on jenkins environment variables

This commit is contained in:
grvvy
2024-07-17 11:30:31 -06:00
parent 0212bf625a
commit c9c6d76ef8

2
Jenkinsfile vendored
View File

@ -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') {