Showing pending build everytime when manually buid in jenkins

Multi tool use
Multi tool use












0















The scenarios is like:



Initially we scheduled 3 jobs in jenkins named like core, api-simulator and ui-sumilator. core is main build and triggered build once in week. api-simulator and ui-simulator are dependent. Once core is executed, it triggered other both jobs. So we can say core is parent of other two.



Somehow, someone changed the build triggered rule for core job and set it to 3 times in everyhour. So it executed so many task for core job. Meanwhile it triggered job for other two also.



To stop all those executions, I disabled all 3 jobs.



But now we are facing issue like when we manually click on build now, it starts building but eveytime it generated next task also. If we keep it running, it will generate new schedule one by one continuously.



Even I created new job for same repository and tried but facing same issue.



screenshot of execution



Can anyone have an idea how to stop that auto triggered schedule task or remove all those task?










share|improve this question





























    0















    The scenarios is like:



    Initially we scheduled 3 jobs in jenkins named like core, api-simulator and ui-sumilator. core is main build and triggered build once in week. api-simulator and ui-simulator are dependent. Once core is executed, it triggered other both jobs. So we can say core is parent of other two.



    Somehow, someone changed the build triggered rule for core job and set it to 3 times in everyhour. So it executed so many task for core job. Meanwhile it triggered job for other two also.



    To stop all those executions, I disabled all 3 jobs.



    But now we are facing issue like when we manually click on build now, it starts building but eveytime it generated next task also. If we keep it running, it will generate new schedule one by one continuously.



    Even I created new job for same repository and tried but facing same issue.



    screenshot of execution



    Can anyone have an idea how to stop that auto triggered schedule task or remove all those task?










    share|improve this question



























      0












      0








      0








      The scenarios is like:



      Initially we scheduled 3 jobs in jenkins named like core, api-simulator and ui-sumilator. core is main build and triggered build once in week. api-simulator and ui-simulator are dependent. Once core is executed, it triggered other both jobs. So we can say core is parent of other two.



      Somehow, someone changed the build triggered rule for core job and set it to 3 times in everyhour. So it executed so many task for core job. Meanwhile it triggered job for other two also.



      To stop all those executions, I disabled all 3 jobs.



      But now we are facing issue like when we manually click on build now, it starts building but eveytime it generated next task also. If we keep it running, it will generate new schedule one by one continuously.



      Even I created new job for same repository and tried but facing same issue.



      screenshot of execution



      Can anyone have an idea how to stop that auto triggered schedule task or remove all those task?










      share|improve this question
















      The scenarios is like:



      Initially we scheduled 3 jobs in jenkins named like core, api-simulator and ui-sumilator. core is main build and triggered build once in week. api-simulator and ui-simulator are dependent. Once core is executed, it triggered other both jobs. So we can say core is parent of other two.



      Somehow, someone changed the build triggered rule for core job and set it to 3 times in everyhour. So it executed so many task for core job. Meanwhile it triggered job for other two also.



      To stop all those executions, I disabled all 3 jobs.



      But now we are facing issue like when we manually click on build now, it starts building but eveytime it generated next task also. If we keep it running, it will generate new schedule one by one continuously.



      Even I created new job for same repository and tried but facing same issue.



      screenshot of execution



      Can anyone have an idea how to stop that auto triggered schedule task or remove all those task?







      jenkins jenkins-pipeline






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 5 at 6:23









      daspilker

      5,9851538




      5,9851538










      asked Dec 21 '18 at 7:41









      Satish SavaliyaSatish Savaliya

      64




      64
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Seems to be, that you've configured triggering your downstream jobs from main job and at the same time in your child jobs you've configured main job as upstream job.



          So, re-check your configuration, and if that - you need to disable upstream job in child jobs.






          share|improve this answer































            0














            Thanks @biruk1230 for your answer.



            It has been resolved by just done the minor configuration change in Jenkins. I updated Branches to build value to "master". It was "*/master" previously.



            You can view from Reference link






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53880919%2fshowing-pending-build-everytime-when-manually-buid-in-jenkins%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              Seems to be, that you've configured triggering your downstream jobs from main job and at the same time in your child jobs you've configured main job as upstream job.



              So, re-check your configuration, and if that - you need to disable upstream job in child jobs.






              share|improve this answer




























                0














                Seems to be, that you've configured triggering your downstream jobs from main job and at the same time in your child jobs you've configured main job as upstream job.



                So, re-check your configuration, and if that - you need to disable upstream job in child jobs.






                share|improve this answer


























                  0












                  0








                  0







                  Seems to be, that you've configured triggering your downstream jobs from main job and at the same time in your child jobs you've configured main job as upstream job.



                  So, re-check your configuration, and if that - you need to disable upstream job in child jobs.






                  share|improve this answer













                  Seems to be, that you've configured triggering your downstream jobs from main job and at the same time in your child jobs you've configured main job as upstream job.



                  So, re-check your configuration, and if that - you need to disable upstream job in child jobs.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 21 '18 at 14:14









                  biruk1230biruk1230

                  1,005316




                  1,005316

























                      0














                      Thanks @biruk1230 for your answer.



                      It has been resolved by just done the minor configuration change in Jenkins. I updated Branches to build value to "master". It was "*/master" previously.



                      You can view from Reference link






                      share|improve this answer




























                        0














                        Thanks @biruk1230 for your answer.



                        It has been resolved by just done the minor configuration change in Jenkins. I updated Branches to build value to "master". It was "*/master" previously.



                        You can view from Reference link






                        share|improve this answer


























                          0












                          0








                          0







                          Thanks @biruk1230 for your answer.



                          It has been resolved by just done the minor configuration change in Jenkins. I updated Branches to build value to "master". It was "*/master" previously.



                          You can view from Reference link






                          share|improve this answer













                          Thanks @biruk1230 for your answer.



                          It has been resolved by just done the minor configuration change in Jenkins. I updated Branches to build value to "master". It was "*/master" previously.



                          You can view from Reference link







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Dec 31 '18 at 11:49









                          Satish SavaliyaSatish Savaliya

                          64




                          64






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53880919%2fshowing-pending-build-everytime-when-manually-buid-in-jenkins%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              VMGM6,k TwpWp8 M9pkPGwDeaxM nM1 HSJxD4wdrCXA,DGwz,Ox U,BYycATGyJ,zkoSr6OEsjSA lPX9O FME4maUqwesfG
                              4JHd txjIV AuWBuOeWWQXbdtJ4,laPaO

                              Popular posts from this blog

                              Monofisismo

                              Angular Downloading a file using contenturl with Basic Authentication

                              Olmecas