{"id":1982,"date":"2020-06-02T17:55:35","date_gmt":"2020-06-02T14:55:35","guid":{"rendered":"https:\/\/artem.services\/?p=1980"},"modified":"2020-06-02T18:02:17","modified_gmt":"2020-06-02T15:02:17","slug":"1982","status":"publish","type":"post","link":"https:\/\/artem.services\/?p=1982&lang=en","title":{"rendered":"Jenkins &#8212; Active Choice: GitHub &#8212; Commit"},"content":{"rendered":"<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-819\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo.png\" alt=\"\" width=\"1280\" height=\"412\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo.png 1280w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-300x97.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-768x247.png 768w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-1024x330.png 1024w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-954x307.png 954w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>For a parameterized assembly with an image tag selection, you will need the <a href=\"https:\/\/plugins.jenkins.io\/uno-choice\/\" target=\"_blank\" rel=\"noopener noreferrer\">Active Choices<\/a> plugin<\/p>\n<p>Go to &quot;<strong>Manage Jenkins<\/strong>&quot;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1782\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/001.png\" alt=\"\" width=\"349\" height=\"383\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/001.png 349w, https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/001-273x300.png 273w\" sizes=\"(max-width: 349px) 100vw, 349px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Section &quot;<strong>Manage Plugins<\/strong>&quot;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1783\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002.png\" alt=\"\" width=\"927\" height=\"493\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002.png 927w, https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002-300x160.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002-768x408.png 768w\" sizes=\"(max-width: 927px) 100vw, 927px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Go to the &quot;<strong>Available<\/strong>&quot; tab and select &quot;<strong>Active Choices<\/strong>&quot; in the search.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1796\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37.png\" alt=\"\" width=\"1412\" height=\"130\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37.png 1412w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-300x28.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-1024x94.png 1024w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-768x71.png 768w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-954x88.png 954w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-1354x125.png 1354w\" sizes=\"(max-width: 1412px) 100vw, 1412px\" \/><\/p>\n<p>Install it.<\/p>\n<p>Create a &quot;<strong>New Item<\/strong>&quot; &#8212; &quot;<strong>Pipeline<\/strong>&quot;, indicate that it will be a parameterized assembly, and add the parameter &quot;<strong>Active Choices Reactive Parameter<\/strong>&quot;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1803\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/004.png\" alt=\"\" width=\"445\" height=\"379\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/004.png 445w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/004-300x256.png 300w\" sizes=\"(max-width: 445px) 100vw, 445px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>We indicate that this is &quot;<strong>Groovy Script<\/strong>&quot; and paste the following into it:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\nimport jenkins.model.*\r\nimport groovy.json.JsonSlurper\r\n\r\ncredentialsId = 'artem-github'\r\ngitUri = 'git@github.com:artem-gatchenko\/ansible-openvpn-centos-7.git'\r\n\r\ndef creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(\r\n  com.cloudbees.plugins.credentials.common.StandardUsernameCredentials.class, Jenkins.instance, null, null ).find{\r\n    it.id == credentialsId}\r\n\r\ndef slurper = new JsonSlurper()\r\n\r\ndef account = gitUri.split(&quot;:&quot;)[-1].split(&quot;\/&quot;)[0]\r\ndef repo = gitUri.split(&quot;:&quot;)[-1].split(&quot;\/&quot;)[-1].split(&quot;\\\\.&quot;)[0]\r\n\r\ndef addr = &quot;https:\/\/api.github.com\/repos\/${account}\/${repo}\/commits&quot;\r\ndef authString = &quot;${creds.username}:${creds.password}&quot;.getBytes().encodeBase64().toString()\r\ndef conn = addr.toURL().openConnection()\r\nconn.setRequestProperty( &quot;Authorization&quot;, &quot;Basic ${authString}&quot; )\r\ndef response_json = &quot;${conn.content.text}&quot;\r\ndef parsed = slurper.parseText(response_json)\r\ndef commit = []\r\ncommit.add(&quot;Latest&quot;)\r\nfor (int i = 0; i &lt; parsed.size(); i++) {\r\n    commit.add(parsed.get(i).sha)\r\n}\r\nreturn commit\r\n<\/pre>\n<p>&nbsp;<\/p>\n<blockquote><p>Where the value of variables, &quot;<strong>credentialsId<\/strong>&quot; &#8212; Jenkins Credentials ID with token to GitHub;<\/p>\n<p>&quot;<strong>gitUri<\/strong>&quot; &#8212; the full path to the desired repository;<\/p><\/blockquote>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>The same thing, but already in <strong>Pipeline<\/strong><\/p>\n<h3>Pipeline:<\/h3>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\nproperties([\r\n  parameters([\r\n    [$class: 'StringParameterDefinition',\r\n      defaultValue: 'git@github.com:artem-gatchenko\/ansible-openvpn-centos-7.git',\r\n      description: 'Git repository URI',\r\n      name: 'gitUri',\r\n      trim: true\r\n    ],\r\n    [$class: 'CascadeChoiceParameter', \r\n      choiceType: 'PT_SINGLE_SELECT', \r\n      description: 'Select Image',\r\n      filterLength: 1,\r\n      filterable: false,\r\n      referencedParameters: 'GIT_URI',\r\n      name: 'GIT_COMMIT_ID', \r\n      script: [\r\n        $class: 'GroovyScript', \r\n        script: [\r\n          classpath: [], \r\n          sandbox: false, \r\n          script: \r\n            '''\r\n            import jenkins.model.*\r\n            import groovy.json.JsonSlurper\r\n\r\n            credentialsId = 'artem-github'\r\n\r\n            def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(\r\n              com.cloudbees.plugins.credentials.common.StandardUsernameCredentials.class, Jenkins.instance, null, null ).find{\r\n                it.id == credentialsId}\r\n\r\n            def slurper = new JsonSlurper()\r\n\r\n            def account = gitUri.split(&quot;:&quot;)[-1].split(&quot;\/&quot;)[0]\r\n            def repo = gitUri.split(&quot;:&quot;)[-1].split(&quot;\/&quot;)[-1].split(&quot;\\\\\\\\.&quot;)[0]\r\n\r\n            def addr = &quot;https:\/\/api.github.com\/repos\/${account}\/${repo}\/commits&quot;\r\n            def authString = &quot;${creds.username}:${creds.password}&quot;.getBytes().encodeBase64().toString()\r\n            def conn = addr.toURL().openConnection()\r\n            conn.setRequestProperty( &quot;Authorization&quot;, &quot;Basic ${authString}&quot; )\r\n            def response_json = &quot;${conn.content.text}&quot;\r\n            def parsed = slurper.parseText(response_json)\r\n            def commit = []\r\n            commit.add(&quot;Latest&quot;)\r\n            for (int i = 0; i &lt; parsed.size(); i++) {\r\n                commit.add(parsed.get(i).sha)\r\n            }\r\n            return commit\r\n            '''\r\n        ]\r\n      ]\r\n    ]\r\n  ])\r\n])\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; For a parameterized assembly with an image tag selection, you will need the Active Choices plugin Go to &quot;Manage Jenkins&quot; &nbsp; Section &quot;Manage Plugins&quot; &nbsp; Go to the &quot;Available&quot; tab and select &quot;Active Choices&quot; in the search. Install it. Create a &quot;New Item&quot; &#8212; &quot;Pipeline&quot;, indicate that it will be a parameterized assembly, and &hellip; <a href=\"https:\/\/artem.services\/?p=1982&#038;lang=en\" class=\"more-link\">\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0447\u0438\u0442\u0430\u0442\u044c<span class=\"screen-reader-text\"> &quot;Jenkins &#8212; Active Choice: GitHub &#8212; Commit&quot;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[613],"tags":[1465,429,637,617,641,1247],"_links":{"self":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/1982"}],"collection":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1982"}],"version-history":[{"count":2,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/1982\/revisions"}],"predecessor-version":[{"id":1984,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/1982\/revisions\/1984"}],"wp:attachment":[{"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1982"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1982"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1982"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}