Skip to content
Snippets Groups Projects
Commit 73e8d61e authored by Guido Gunther's avatar Guido Gunther :zzz:
Browse files

Restrict tags to pureos namespace

This avoids build attempts when e.g. a developer
users the same key in Debian. The builds fail due
to the changelog not having the right distribution
but this prevents the attempts upfront.
parent a6685ff8
No related branches found
No related tags found
No related merge requests found
......@@ -151,9 +151,9 @@ pkgs.each { pkg ->
checkout([
changelog: true,
poll: true,
userRemoteConfigs: [[url: '${url}', refspec: '+refs/tags/*:refs/remotes/origin/tags/*']],
userRemoteConfigs: [[url: '${url}', refspec: '+refs/tags/pureos/*:refs/remotes/origin/tags/pureos/*']],
\$class: 'GitSCM',
branches: [[name: '**']],
branches: [[name: '**/tags/pureos/**']],
extensions: [[\$class: 'RelativeTargetDirectory',
relativeTargetDir: 'build'],
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment