Questions tagged [jfrog-pipelines]

From the website: "JFrog Pipelines is an automation solution for building, testing, and deploying software as part of your CI / CD pipeline." Please use this tag for questions related to the JFrog Pipelines product which is part of the JFrog suite of products.

JFrog Pipelines website: https://jfrog.com/pipelines/
JFrog has a suite of software products for applying DevOps principles and practices.

52 questions
3
votes
1 answer

Jfrog pipelines source sync is stuck in "Sync in progress" state

I have added a pipeline source using my repository as per the steps mentioned in the developer doc. But, the sync is stuck in processing since an hour, it only shows Sync in Progress.. in the logs.
Priyanshu
  • 65
  • 5
3
votes
1 answer

Where can I find the list of available runtime images for JFrog Pipelines?

I want to create a step that gets executed on windows together with Java 17. I am trying to avoid creating a custom VM for this use case and to use a prebuilt image. Is there an image for Windows that includes Java 17?
Noam
  • 1,018
  • 7
  • 18
3
votes
1 answer

Is there a way in JFrog Pipelines to automatically reject steps of a previous run which are still pending approval?

For example if run 1 is pending approval and run 2 is triggered, then run 1 should be rejected.
Vivek Kodira
  • 2,764
  • 4
  • 31
  • 49
3
votes
1 answer

How to use JFrog pipelines build image from local artifactory?

Everytime i run my build in jfrog pipelines, i see that the build image is being pulled from releases-docker.jfrog.io. Would like to instead pull the image from my own artifactory instance to reduce time. Here is my sample test pipeline: pipelines: …
Raj
  • 33
  • 3
2
votes
1 answer

Jfrog pipeline Service- Getting Permission denied for pipeline which try to push commits into SCM using GitRepo resource

Writing a pipeline that can push commits into a bitbucket git repository using the GitRepo resource but I keep running into an issue with it. The user and integration have admin privileges on the repo and it was successfully able to create the…
2
votes
2 answers

Jfrog Build a Docker image with a private base image from Artifactory

I am following the Jfrog Pipeline Example: Docker Build and Push from https://www.jfrog.com/confluence/display/JFROG/Pipeline+Example%3A+Docker+Build+and+Push I would like to build a docker image based on an existing docker image(caching) from…
Jotta E
  • 292
  • 5
  • 14
2
votes
1 answer

How to get a build triggered only for pattern specified in the GitRepo resource in JFrog Pipelines?

The files include, exclude regex for a GitRepo resource are getting ignored. This is the resource definition I’ve created: - name: platform_pr type: GitRepo configuration: gitProvider: myGithub path: dev/helm-values …
2
votes
1 answer

Pipeline sync is failing with error: "Failed to sync hook with err: Webhook creation failed with err: postHook returned error 422"

When I try to add my pipeline source, sync fails with the error: Failed to sync hook with err: Webhook creation failed for path: deepika/demoApp and integration: deepikaGithub with err: postHook returned error 422 for deepika/demoApp How can I…
Deepika
  • 75
  • 4
2
votes
1 answer

Pipeline step is failing with "fatal: reference is not a tree: 679e2fc3c2590f7dbaf64534a325ac60b4dc8689"

One of my step in my pipeline is failing with the below error: fatal: reference is not a tree: 679e2fc3c2590f7dbaf64534a325ac60b4dc8689 How do i resolve this error? even after re-triggering the step, it is failing with the same error.
Deepika
  • 75
  • 4
2
votes
1 answer

JFrog Pipeline step fails with the error "Node failure"

I am facing this error in a pipeline run where we are using k8s dynamic nodes The error message is: Step timed out due to node failure. This could have been caused by the node running out of memory. Please check the node stats and try re-triggering…
Vivek Kodira
  • 2,764
  • 4
  • 31
  • 49
2
votes
1 answer

Is there a way to configure a JFrog pipelines step that will only run for specific branches like master?

I want this step to only execute on the master branch - name: test_step type: Bash execution: onExecute: - echo 'Hello world' How do I ensure that this step only runs on the master branch?
Vivek Kodira
  • 2,764
  • 4
  • 31
  • 49
2
votes
1 answer

Jfrog-Pipelines - Kill multiple runs of a pipeline branch via REST

I want to kill hundreds of pipeline runs of specific pipeline and specific branch (without deleting either of them). Any idea how I can do it?
Abhishek
  • 539
  • 5
  • 25
1
vote
1 answer

Jfrog pipelines throws an error duing sync after step type is updated

I created a pipeline source (by following the Jfrog pipeline developer docs for steps) which had a step of type jenkins - name: firstStep type: Jenkins I synced my pipeline source and the sync was successful Later I updated the step type to be…
Priyanshu
  • 65
  • 5
1
vote
1 answer

How to disable running builds on commit for a gitrepo resource

I have a git repo resource, but I don't want to trigger run on every commit into this repository. is there anyway I can achieve this?
krishna
  • 41
  • 5
1
vote
1 answer

How does Jfrog Pipelines' GitRepo Include and Exclude files works? Which takes precedence?

I want to create a GitRepo resource in my pipelines but want to use combination of include and exclude files. But I am unclear on precedence! If the pattern I give matches with both include and exclude - how does it work? - name: platform_pr …
1
2 3 4