15,847 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
54
views
Installing python through UserData in Windows [closed]
My EC2 instances uses windows-2019 AMI and I want to install python through my userdata. This userdata format is unrecognised from Instance Diagnostics -> System Logs on the EC2. Also the ...
-1
votes
0
answers
74
views
.NET 10 MAUI build for ios on Github [closed]
I'm trying to get .NET 10 Maui app to build and publish to testflight. I've been trying for hours now with AI. But it can't figure out how to make it work. This is my yml now after many many many ...
Best practices
0
votes
1
replies
43
views
Deploying separate repos to production with azure-pipelines.yml
I have 4 repos in Azure (all are in development branch):
- Web App
- Web API
- Mail Console 1
- Mail Console 2
Here's how I deploy them in testing phase:
1. Publish Web App and Web API
2. Build Mail ...
0
votes
1
answer
64
views
Replace value inplace while saving the old value
I'm looking to use yq to replace a yaml file values while still retaining the old value.
Essentially putting base/1.0.0/ after base.routes.paths ~/ and what comes after. The added value will be the ...
Advice
0
votes
1
replies
36
views
How do I convert a trx file into html in azure test pipeline
So how do I convert a TRX file into html in azure test pipeline.
We have a selection of pipelines which run tests on a nightly basis. The tests are designed in Visual Studio with C#, Playwright, ...
0
votes
0
answers
45
views
liferay javascript client extension not working
I created a JS client-extension for Liferay 7.4 (U60). Everything works fine on my local environment, but after deploying to our Dev environment through a Jenkins pipeline, I’m getting 404 Not Found ...
0
votes
0
answers
46
views
Error in Pod Update while building in Azure DevOps Pipeline for React Native
I'm setting up an Azure pipeline for a React Native project, but I'm running into an error during the Pod update step. Does anyone know what changes I might need to make in the Podfile, the YAML ...
1
vote
1
answer
79
views
Quarto trying to render script files
I'm putting together an academic website with a publications section. I've written a script that will turn a bibtex file into article-by-article quarto and bibtex files that then use a custom template....
0
votes
1
answer
100
views
Interpreting YAML parameters in ROS2 as dict
I'm using ROS2 for a project. I'm stuck in interpreting the following parameter:
my_node:
category_sector_mapping:
Plastic: 0
Paper: 1
Glass: 2
Aluminium: 2
Organic: 2
...
0
votes
1
answer
92
views
Azure Devops YAML pipeline matrix strategy job to call conditional dynamic template
I want to execute different dynamic templates according to a matrix strategy job
The pipeline code below starts 2 jobs as expected, but I cannot call template 1 from Job1 and template 2 from Job2
...
0
votes
1
answer
136
views
Spring 3.5.x gives 'name' must not be null after upgrading from Spring 3.4.x
I got this shortened yaml configuration file:
apiconfiguration:
apiList:
-
queryParameters:
- something
This is my Java class:
@Getter
@Setter
public class ApiConfig {
...
1
vote
1
answer
66
views
How to properly cache Nuget files across Pipeline stages in ADO
I'm trying to cache all the Nuget packages for my .NET Solution in the first stage of my job, and then restore that cache in subsequent stages. I have had a lot of trouble finding reliable info on ...
-2
votes
1
answer
55
views
Github composite outputs "suddenly" not propagating to the next job
I'm doing Infrastructure as Code for a project and it involves setting up the Azure infrastructure via Github workflow.
What i do in my composite is:
Create a resource group
Build bicep files
Run &...
2
votes
1
answer
104
views
Load loki url from yaml
I have my logback-spring.xml as follows:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<springProperty scope="context" name="...
-1
votes
1
answer
59
views
How to correctly use retry_delay or retry_delay_sec in Airflow YAML DAG?
I'm currently working with Apache Airflow and trying to configure retries for my DAG tasks using the retry_delay (or retry_delay_sec) parameter in a YAML-based DAG definition.
However, I'm running ...