14,068 questions
1
vote
1
answer
96
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
44
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
19
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
99
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
44
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
353
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
78
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
58
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
161
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
63
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
50
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
89
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
70
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
48
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
43
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: ...