jfrog / jenkins-jfrog-plugin

Easy integration between Jenkins and the JFrog Platform.
https://github.com/jfrog/jenkins-jfrog-plugin
Apache License 2.0
39 stars 17 forks source link

build-info icon not showing #92

Open glevy opened 1 month ago

glevy commented 1 month ago

How can we help?

Anything special needs to be configured for this to work? I'm using latest plugging version with Jenkins LTS.

Running this simple nuget build, which completes successfully. I can see the build-info and scan results in Artifactory, but the build-info and the xray icons are missing. Not sure if the xray icon is supported, but I understand it should support the build-info icon.

jf 'nuget-config --repo-resolve  Nuget --server-id-resolve default-server'
jf 'nuget restore test.sln -MSBuildPath c:\\...\\2022\\Professional\\MSBuild\\Current\\Bin\\ -Recursive -Force --build-name=${buildName} --build-number=${buildNum}'
 jf 'rt build-publish ${buildName} ${buildNum}'

script {
      try {
                jf 'build-scan ${buildName} ${buildNum}'
       }
        catch (err) {
                  println 'Violations were found!'
         }