I am trying to create a GitHub Action that initializes the ChromaDB server which serves in port 8000 and exposes that to the rest of the workflow. Cu ...
I am trying to create a GitHub Action that initializes the ChromaDB server which serves in port 8000 and exposes that to the rest of the workflow. Cu ...
For a React project, I put in place a CI with Cypress end-to-end tests on Github Actions. Here is the issue: my tests pass locally they all fai ...
I'm a bit at a loss currently with pipeline triggers in azure piplines: My pipelines keep triggering for individual CI whenever I commit to my pipeli ...
I have several choices in my jenkins pipeline script: I'm trying to make a map like a ["microservice1": true, "microservice2": true, etc.] if I cho ...
I'm currently facing an issue with my GitLab CI/CD pipeline, and I could use some assistance. Here's the problem: I have a network setup in GNS3 wher ...
I am setting up a python code quality workflow locally (pre-commit) and on Github Actions (GHA). Environment is managed with poetry. While the local ...
How do I change the name of the experiment? I tried to use dvc exp run -n to name the project then use git to push to github. However the experiment n ...
This is the template of my database pipeline This is the template of my end-to-end test pipeline. I am trying to call the specific job from one ...
I am facing problem with my pipeline design using gitlab resource groups. See here my simple reduced .gitlab-ci.yml: What I want to achieve: Th ...
We have a GitHub Actions workflow triggered by the creation of a release, i.e., How can we add the built files to the triggereing release as an ass ...
I would like to create a new pipeline using API for SAST scan. Is this possible using the API. Any pointers to the relevant BB API docs or any sample ...
I am building a CI workflow using GitHub Actions. Goal is to build and test a .NET C# application using a MSSQL database. The database can successful ...
I'm attempting to save the result of a GitHub Actions job to be used by another job, like this: jobs: job1: runs-on: ubuntu-latest # Map a ...
My situation right now is that I have a CI/CD pipeline set up in GitHub Actions, this workflow does the job of deploying my app container into ECS Far ...
I added a firebase-admin in the NestJS Project, the unit test pass in the local code but fails in the CI/CD Pipeline. All the tests passed locally ...
I did set up a CI on a GitLab (version 15.7.0), and I'm trying to run a pipeline only if a commit has been made on master branch, first. The pipeline ...
I have created a GitHub actions script and in 2nd run, the cache step is used. However, the version that is cached was 17 but upon checking the versio ...
I am looking for CI/CD solution for the Google Bigquery script. The requirement is that I have a list of files with DDL script, design the CI/CD solut ...
I have two steps in my CI pipeline. one is to cache the installation path of dotnet and the other is dotnet installation. and using windows-2019 image ...
So, I have the following pipeline pipeline { agent any environment { UPLOADED_FILES_DIR='/tmp/spring_fileupload_dir' DOCKER_USR ...