Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
62 views

I'm using Buddy Works CI/CD. My use case is that I want to run auto evaluation via CI every time there is a push of changing a evaluation data file. I have tried a lot but fail. My current approach is ...
panda's user avatar
  • 31
-6 votes
0 answers
49 views

I am learning CI/CD pipeline I made a custom Bitbucket runner on my local VMware-based VM and i set the socarqube server and scanner both on the VM but still it's not working it says it's not a file ...
Vansh Arora's user avatar
Advice
0 votes
2 replies
44 views

Let's say you have a repository in gitlab. For facilitated distribution of the application and according development throughout a team, you convert the app into a Docker Container, which can be ...
DevelJoe's user avatar
  • 1,552
Best practices
0 votes
0 replies
32 views

Is there a best practice to capture screenshots of an unreal app when performing a test in a gitlab ci pipeline? gemini suggest using movie render queue w a vnc session or NICE DCV to stimulate a user ...
simgineer's user avatar
  • 1,926
0 votes
0 answers
25 views

How to translate CI to IC (brazilian portuguese) of the header of a gtsummary table? Using theme_gtsummary_language() function, it doesn't work. I tried the modify_header() function too, but doesn't ...
Ornella Scardua's user avatar
Best practices
0 votes
6 replies
57 views

the title is somewhat difficult i try to explain what i want the input from you all. My current practice from a feature/bug development towards the codes journey to the production is following I get ...
FlorianD's user avatar
  • 113
Best practices
0 votes
1 replies
45 views

We built a CI/CD monorepo -- it makes intuitive sense with local/staging/prod. You push small commits and it auto-deploys. That makes sense when you just have that one pipeline for one app. But now as ...
Jacob C's user avatar
  • 11
4 votes
1 answer
269 views

I’m using Fastlane on Bitrise CI to build and distribute an iOS app. Everything in my CI runs fine — the build succeeds, Fastlane reports that the upload to TestFlight was successful — but the build ...
Nass's user avatar
  • 33
0 votes
1 answer
60 views

I'm trying to build a devops pipeline that allows to upload a python wheel file to my databricks volume. However I keep getting the error : "Error: Authorization failed. Your token may be expired ...
Pranav ramachandran's user avatar
0 votes
0 answers
22 views

I have an Apache Cordova application for which I create an iOS and an Android build. For this purpose I have a build pipeline in Azure running on a MacOS agent. Up until recently this pipeline had ...
Zachary's user avatar
  • 141
0 votes
3 answers
123 views

I have a CI script on my gitlab repositories to publish plugins for my application. My plugins can either be published in debug or release. The steps for doing them are slightly different, so i have 3 ...
cboittin's user avatar
  • 419
0 votes
0 answers
50 views

I integrated SwiftLint into my HelloWorld app to explore how I can incorporate it into my development and CI flow. While it works during development, I face a problem in my pipeline during archiving. ...
netshark1000's user avatar
  • 7,433
0 votes
1 answer
457 views

Using GitHub actions I'm building for Windows on an Ubuntu agent, this is a snippet from the build.yml: jobs: build: runs-on: ubuntu-latest - name: "⚙ Setup .NET" uses: ...
Jeremy Thompson's user avatar
0 votes
1 answer
90 views

I'm using FTP-Deploy-Action to push my code on my server. But I sometime gets the following error in my CI FTPError: 550 /my-folder/my-file: No such file or directory at FTPContext....
Raphaël Balet's user avatar
0 votes
0 answers
63 views

We need to override global parameters in our CI/CD pipeline. We have enabled "Include global parameters in ARM template" from the "ARM template" blade in ADF. After publishing ...
Geekn's user avatar
  • 2,952
1 vote
3 answers
187 views

When I run dotnet dev-certs https --trust I see this message Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed if the certificate was not previously ...
Yola's user avatar
  • 19.4k
1 vote
0 answers
65 views

SOLVED: The issue was a difference in temp directories in the environment. The build was using the temp directories set in buildAgent.properties and the terminal was using the default /tmp directory. ...
Joe Vogel's user avatar
0 votes
0 answers
52 views

I have added a CI using Codecov to ensure that code is sufficiently covered when PR are done in my code. But the job is still failing after the modifications I made. Here is the full report from ...
Thomas's user avatar
  • 396
0 votes
1 answer
100 views

In Jenkins, I need the IP/Computer Name of the client computer that the user started a Jenkins job from. I have tried this, but it never reaches the inner "if" source: Source 1 Source 2: ...
HammerOfSweden's user avatar
0 votes
1 answer
78 views

I am using selenium and c# to test the download file from the browser application. when I click on download button then file download option is opening on the browser. So how can I resolve this. Also ...
Mayank's user avatar
  • 1
0 votes
0 answers
52 views

I have a situation where I need to build and test on windows, a .NET Core application. However, as part of the testing I would like to bootstrap a database and then run tests against it. In Gitlab, ...
Christian Bongiorno's user avatar
1 vote
1 answer
52 views

I’m using Karate for UI automation and running tests via Docker in CI. My configuration is as follows: karate.configure('driverTarget', { docker: 'karatelabs/karate-chrome:1.5.0', showDriverLog: ...
satheesh kannan k's user avatar
0 votes
1 answer
142 views

Problem I'm trying to create a CI/CD pipeline for a set of Cloud Functions stored in a GitHub repository. I've already linked the repository to Cloud Build and created YAML files for each function ...
lapiceroazul4's user avatar
0 votes
0 answers
65 views

I would like to add status checks to GitHub pull request, however, you can only add status checks on name-specific Azure pipelines / GitHub actions. The CI currently runs all kinds of Azure pipelines ...
geo8food's user avatar
0 votes
0 answers
57 views

so I'm having a bit of a headache with my CI setup. I've got my GitLab runner running right here on my own machine, you know, locally. The main thing is, I want my node_modules to be super, super fast....
FanLife's user avatar
  • 19
0 votes
0 answers
18 views

I am doing a small project for a course, and I configured a build and deploy project on Travis-CI. Build and deploy are executed using poetry. The project is linked to GitHub. When I push my changes ...
Stefano Bar's user avatar
0 votes
0 answers
47 views

I have two PRs which pass UT check on their own, but merging one would break another even though they don't generate a merge conflict. Simplest example is that PR#1 rename foo() to bar() and all ...
Dominik Kaszewski's user avatar
0 votes
0 answers
18 views

How can I access my K8S agent from a CICD Step? The agent is installed and working correctly, but I get no contexts when using it. The following code returns the expected context: job: image: ...
Techie TillIDie's user avatar
0 votes
0 answers
86 views

How can I set git config --global init.defaultBranch main during the FETCHSOURCE step in google cloud build? The mission is silencing this redundant message: hint: Using 'master' as the name for the ...
Anthony Metzidis's user avatar
3 votes
0 answers
1k views

I need to automate updating to latest iOS betas as part of my ci script, but I can't get it to install iOS 26.0 beta for the life of me, using xcodes or xcodebuild. I can see the version listed using ...
Eric Zhao's user avatar
0 votes
0 answers
36 views

Two issues that seem like they might be related. I'm trying to apply checkout rules for a VCS and getting weird results +:Installers/Script => %teamcity.agent.work.dir%\Installers\Script is just ...
Cody Harness's user avatar
  • 1,147
0 votes
0 answers
36 views

I use Azure Pipeline for builds and have the folowing GitVersion.yml (i use v5 of gitversion): ... branches: main: regex: ^main$ mode: ContinuousDeployment tag: alpha increment: ...
DaveVentura's user avatar
0 votes
0 answers
72 views

We are integrating Xcode Cloud as CI/CD solution. I want to have control over how version numbers and build numbers are set. Is there any way to do this via ci_scripts? I tried updating ...
Shivacharan Reddy's user avatar
0 votes
0 answers
43 views

I am generating an aggregated jacococ coverage report in a Maven module project like below <build> <plugins> <plugin> <groupId>org.jacoco<...
tuk's user avatar
  • 6,954
0 votes
0 answers
52 views

I have a simple Git-based CI/CD setup deployed to Kubernetes: Dev environment: Automatically updated when I push to the dev branch. Test environment: Automatically updated when I merge from dev into ...
Christian's user avatar
0 votes
0 answers
25 views

I have a jenkins pipeline and I am running a Nodejs application which uses the docker image node:22.14.0-alpine3.21. I need to run git on the build and deploy stage but git is not available in the ...
Kwaadjei's user avatar
  • 309
0 votes
0 answers
37 views

I am trying to use a Github Workflow to build an Android app, but it requires a nonstandard development environment. Specifically, I need to use a file from https://github.com/Reginer/aosp-android-jar....
ETL's user avatar
  • 295
1 vote
1 answer
127 views

We use the Swift Package Manager for our iOS project and declare our versions, for example, as follows: I found the GitHub action from getSideTrack to update the packages. Under the hood, it invokes ...
Henry's user avatar
  • 41
0 votes
2 answers
418 views

I was working on migration my application from CRA to Vite. Project is using React, Tailwind, SCSS, TS and Vite. After migration application works well with all Tailwind styles locally. It is also ...
Kuba Bujak's user avatar
0 votes
0 answers
119 views

I'm doing a workflow in git actions (Gitea) that build and upload the app to App Store in TestFlight. The match and build work as expected the issue is in uploading the process start but then stuck ...
Nicola Rigoni's user avatar
0 votes
1 answer
179 views

I have azure function in .NET 8 Isolated function app, I want to deploy on Azure container plan. I have created Azure resources on Azure portal Current CI/CD pipeline is resulting unable to connect ...
JOYBOY's user avatar
  • 75
0 votes
1 answer
347 views

I want to utilize the this annotation: https://argo-cd.readthedocs.io/en/stable/operator-manual/high_availability/#webhook-and-manifest-paths-annotation but I can't use the traditional Github webhooks ...
ava's user avatar
  • 1
0 votes
0 answers
39 views

I have a github workflow that pushes to a nuget server. The api key and source are stored as origanizational secrets, and this fails with the error: error: Source parameter was not specified. It can'...
Don Chambers's user avatar
  • 4,375
2 votes
0 answers
278 views

According to the documentation for the EAS CLI's eas build:download command, a fingerprint hash to identify the build you wish to download is required. The sensible way to get this fingerprint seems ...
Andrew's user avatar
  • 5,511
0 votes
1 answer
70 views

We have a Jenkins job that is currently running on VMs. The initial build takes a long time to complete, but since the binaries are persistent the job only takes 5-10 minutes after the first build is ...
user12482's user avatar
1 vote
0 answers
34 views

How can I trigger a downstream pipeline that does not replace results on the main branch/commit (or any other) of the downstream project? Lets say I have two projects in gitlab. One is an executable ...
jozxyqk's user avatar
  • 17.7k
0 votes
2 answers
38 views

I have a Azure pipeline containing a job with a structure like this: jobs: - job: A variables: - name: runJob value: true steps: - task: Powershell@2 displayName: ...
A.Yadav 's user avatar
1 vote
2 answers
52 views

Currently i am using "post-build Actions" in order to trigger another build and it works, i have a condition of "string match" that if it matches the build triggered, Now i have ...
alon hen's user avatar
0 votes
1 answer
110 views

I've been having an issue cropping up with my builds recently where they sometimes append an '@2' to the working directory being used, ie D:\WorkingDirectory@2 - this is an issue since I have my ...
Gabriel Lacey's user avatar
0 votes
0 answers
99 views

Currently having some Streamlit apps created using the integrated Streamlit in Snowflake, the actual script for creating the apps is already done via CI/CD pipeline and it works great. My question ...
quarrendon's user avatar

1
2 3 4 5
282