14,042 questions
Advice
0
votes
0
replies
70
views
python-semantic-release + Woodpecker CI: How to support RC builds and keep a grouped changelog for the final release?
I’m struggling to design a correct CI/release workflow using python-semantic-release together with Woodpecker CI, and I feel like I’m mixing concepts incorrectly.
My goals are:
Accumulate multiple ...
0
votes
1
answer
64
views
Modifying files during an Azure DevOps Build Validation pipeline keeps triggering re-runs
I have a repository that implements automatic versioning using commitizen. Handling version bumps after merging to main is trivial, I have a simple pipeline to perform the cz bump and then push that ...
0
votes
1
answer
225
views
How to programatically build and run a Beckhoff TwinCAT solution?
I am trying to set up continuous integration for my TwinCAT3 PLC project, including external tests through Python pytest.
For this to work I need a script that does the following:
Build the solution
...
Best practices
0
votes
1
replies
92
views
Integrating Testing and QA into AI Workflows
Is anyone aware or can anyone verify whether AI software development pipelines and processes have evolved to the point that they incorporate basic industry testing procedures (unit testing, smoke ...
Best practices
1
vote
1
replies
111
views
How to build a .NET Android App in a Gitlab CI Pipeline
I'm trying to build a .NET Android App in my Gitlab CI pipeline, but the "official" way I thought I found does not seem to work or I misunderstood something there.
I used the Android App ...
Best practices
0
votes
1
replies
64
views
How to manage and isolate multiple instances of the same Python worker script dynamically
I am currently running several Python scripts on a Linux server. These scripts communicate with external hardware devices
Right now, I have 4 instances running. The underlying Python code is exactly ...
1
vote
1
answer
172
views
How to automate versioning via CI in a Python project? [closed]
I have a Python project using pyproject.toml and I want to figure out the best method to automate incrementing the version. The requirements are:
Each time the package is modified (e.g.: src/**, ...
0
votes
0
answers
129
views
Wikipedia returns 403 when using sphinx linkcheck to check for broken links
We use sphinx linkcheck to make sure that our docs do not contain broken links, but Wikipedia has started returning a 403, assuming that our CI is a robot. Fair enough, it is a robot, so has anyone ...
0
votes
0
answers
141
views
E: Unable to locate package libeigen3-dev
In short, in the GitLab CI I get the error
E: Unable to locate package libeigen3-dev
Context.
I'm on Linux. On my machine the makefile works and the program can run. The CI can run the installation of ...
1
vote
1
answer
90
views
How to create trigger on specific file change?
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 ...
Advice
0
votes
2
replies
66
views
How to replicate locally automated API tests within gitlab CI
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 ...
Best practices
0
votes
0
replies
44
views
screenshot unreal app in windows ci pipeline
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 ...
0
votes
0
answers
46
views
How to translate CI to IC of the header of a in gtsummary table?
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 ...
Best practices
0
votes
6
replies
121
views
Workflow from feature development to staging test to production run
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 the following.
...
Best practices
0
votes
1
replies
69
views
How do you handle CI/CD for APIs? I’m stuck on how setups with multiple local/staging/prod fit together
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 ...
5
votes
1
answer
889
views
Fastlane 'upload_to_testflight' reports success but build never appears in AppStore Connect (Bitrise CI, iOS)
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 ...
0
votes
1
answer
100
views
Unable to authorize databricks from Azure Devops Stage
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 ...
0
votes
0
answers
25
views
How to update Android cmdline-tools on a MacOS agent in Azure Pipelines
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 ...
0
votes
3
answers
215
views
In gitlab CI, how to branch and merge stages or jobs so that the pipeline can complete in different ways?
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 ...
0
votes
0
answers
75
views
SwiftLintBuildToolPlugin doesn't have a bundle identifier
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.
...
0
votes
1
answer
1k
views
error NU1102: Unable to find package Microsoft.NETCore.App.Runtime.win-x64 with version (= 8.0.19)
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: ...
0
votes
1
answer
151
views
FTPError: 550 No such file or directory [closed]
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....
0
votes
1
answer
87
views
Global parameters are not added to ARM template after enabling "Include global parameters in ARM template"
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 ...
1
vote
3
answers
372
views
Run `dotnet dev-certs https --trust` without showing user prompt
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 ...
1
vote
0
answers
77
views
In TeamCity, why are Angular tests failing to start in the build but not in the agent's terminal?
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. ...
0
votes
0
answers
61
views
Codecov failing, and I don't understand why (and how fix this)
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 ...
0
votes
1
answer
117
views
Getting user client IP in Jenkins [duplicate]
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:
...
0
votes
1
answer
101
views
Avoid browser's download file dialog box in selenium/C# automation
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 ...
0
votes
0
answers
71
views
Cross OS gitlab CI/CD with service
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, ...
1
vote
1
answer
55
views
How to completely disable video recording in Karate Docker CI execution?
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: ...
0
votes
1
answer
196
views
Problems when setting up a CI/CD for Cloud Functions using Google Cloud Build and Github
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 ...
0
votes
0
answers
85
views
How can I block GitHub pull request due to a fail of a dynamic Azure pipeline?
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 ...
0
votes
0
answers
63
views
Ultra-Fast Angular CI: Persistent, Local node_modules Cache on Self-Hosted Runner
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....
0
votes
0
answers
20
views
Travis deploy not triggered
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 ...
0
votes
0
answers
49
views
Are GitHub actions with on.push.branch.main guaranteed to be atomic?
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 ...
0
votes
0
answers
19
views
Gitlab Steps access to K8S agent
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:
...
0
votes
0
answers
87
views
Control git init.defaultBranch settings in FETCHSOURCE
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 ...
5
votes
1
answer
2k
views
Can't install iOS 26 beta using xcodes or xcodebuild (ProcessExecutionError)
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 ...
0
votes
0
answers
64
views
TeamCity checkout rules are having issues with parameters and absolute paths
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 ...
0
votes
0
answers
110
views
How to programmatically set version and build numbers for Xcode Cloud CI using scripts?
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 ...
0
votes
0
answers
46
views
How to send aggregated jacoco coverage report to coveralls?
I am generating an aggregated jacococ coverage report in a Maven module project like below
<build>
<plugins>
<plugin>
<groupId>org.jacoco<...
0
votes
0
answers
69
views
How can I promote database inserts and schema changes through dev → test → prod in a Kubernetes CI/CD pipeline without skipping environments?
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 ...
0
votes
0
answers
40
views
Reusable git in Jenkins stages running a docker image
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 ...
0
votes
0
answers
50
views
Editing CI build environment set up by checking out Github workflow
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....
1
vote
1
answer
203
views
How to stay up to date with spm packages?
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 ...
0
votes
2
answers
472
views
React + Vite + TailwindCSS application is not building
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 ...
0
votes
0
answers
159
views
fastlane pilot stuck on upload to App Store
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 ...
0
votes
1
answer
218
views
Azure DevOps CI/CD Pipeline for private Azure Container Registry and Azure Container App
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 ...
0
votes
1
answer
458
views
Triggering ArgoCD webhook using Github Actions
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 ...
0
votes
0
answers
44
views
Github Workflow can't use Organizational Secrets
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'...