14,077 questions
0
votes
1
answer
27
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
17
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
87
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
41
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
289
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
62
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
0
answers
52
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
142
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
60
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
44
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
85
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
69
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
46
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
42
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
108
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 ...