1,851 questions
0
votes
1
answer
55
views
Using TFS DevOps Pipelines, how to lock a resource for build agents so it is not used by more than one pipeline at any given time
We frequently get build failures because multiple build agents are using the same resource at the same time (in our case it's a specific database tool, but it could be anything really).
TeamCity has a ...
0
votes
0
answers
92
views
Clean Failed, UnauthorizedAccessException: Access to the path 'Azure.Core.dll' is denied
Good morning,
I have a question regarding this error:
"Clean Failed < 1sec // UnauthorizedAccessException: Access to the path 'Azure.Core.dll' is denied."`
Here is a error message:
&...
1
vote
1
answer
399
views
Setting App prices using Price Point Id (Appstore Connect API) for new Apps
I am building a script to upload new apps to store via fastlane. However, fastlane currently faces issues with setting prices for newly created apps.SO I created ruby scripts to do it manually via api....
0
votes
1
answer
99
views
Automatically Send an Email from Google Sheets using Data in Sheet Cells
I have a Google Sheet with Data from a Google Form. I would like to make an Apps Script that when a certain cell is edited in the Sheet, Apps Script will send an email response from me to an email in ...
0
votes
1
answer
128
views
I need to redirect to an HTTP endpoint to show a common error message if any action fails. in power automat
My flow can fail at various points, and identifying the origin of the issue can be challenging. To address this, I want to redirect users to a specific HTTP endpoint that displays a common error ...
0
votes
1
answer
22
views
Manage generated folders by build_runner while CI/CD automation
I am trying to build release apk with Github CI/CD automation. I have Used Jsonserializable and Intl packages in my project. And build_runner is generating generated folders in project which we doesn'...
1
vote
1
answer
63
views
Compare two lists and write the result in a file using the rejectattr file
Given the list expired:
[
{
"cert": "help.abc.com.cer",
"certkey": "help.abc.com-key",
"daystoexpiration": 0,
&...
1
vote
0
answers
131
views
GLSL: Separate sources and standalone validation
I want to be able to do these things:
Write GLSL shaders
Separate my sources for reusability purposes
Validate all my sources before building the main application, and exit if anything fails
The ...
1
vote
1
answer
381
views
Automatically update a dockerfile when new versions of the base image are available [closed]
Does anyone know of automation for automatically updating the digests referenced in a dockerfile when new upstream versions are released, as denoted by new tags with higher semver?
I've a project on ...
1
vote
0
answers
305
views
How to deploy from an artifact registry to Firebase Hosting
I have this app that has its builds uploaded to an artifact registry, and I wish to deploy the latest artifact to Firebase Hosting automatically, via CD script.
But... Firebase doesn't seem to support ...
-1
votes
1
answer
127
views
how to trigger a python script on release cut in github using git actions?
I want to trigger a python script on dynamic runner if any new release cut happens using github actions.
what i am trying is :
on:
push:
tags:
- 'v*'
jobs:
RunScript:
runs-on: ubuntu-...
0
votes
1
answer
140
views
Unable to delete all the records from table but its deleting only one record using selenium java
Trying to delete remove button after adding the products
used for loop to delete the records one by one before signout the testcase
But its deleting only one record ,i would like to delete the records ...
1
vote
0
answers
27
views
How to write automation to verify a list of users that have the same role
I wanted to verify these lists of users or sample of data have the same role.
For instances:
field: Users, field: Roles
Users:
A-tester
B-tester
C-tester
D-tester
E-tester
F-tester
G-tester
I wanted ...
0
votes
1
answer
6k
views
Power Automate: run a query against a dataset, check conditions, send unique e-mail with personalized data
my goal is to run a query against a dataset, send email to unique recipients with personalized data.
Here is my first half of the flow:
PARSE JSON is step so I can select e-mail column from my dataset ...
0
votes
1
answer
249
views
Automatically download and save tableau packaged workbook offline after refresh
I have a workbook on Tableau Server, which is scheduled to refresh daily. Most users subscribe to a view, which they receive automatically on email once the workbook is refreshed. However, some ...
2
votes
0
answers
338
views
How to set CFBundleShortVersionString in an Xcode Cloud Workflow
I am finding it difficult to get help with Xcode Cloud Workflows. We use Xcode Cloud to build and deploy to App Store Connect. Building for TestFlight is simple because Xcode Cloud automatically ...
-1
votes
2
answers
96
views
Java, Selenium. How to locate a hyperlink WebElement?
I'm trying to perform a click action on the "sign out" link on Gmail but my console keep saying that it's unable to locate the element. Below is my code.Thank you!
@FindBy(linkText="...
1
vote
0
answers
165
views
Python Automatically pick an analysis based on the dataset
I have ten time-series datasets coming from various cities. I want to automate the analysis process. I am trying to create a program structure to automate the analysis process and develop the script.
...
5
votes
2
answers
3k
views
How can I make one single `.gradle` cache for multiple projects?
We are trying to use one single .gradle cache among our multiple build workers (in jenkins) by creating .gradle in NFS mount which is shared with all the workers.
Now when we run multiple projects ...
1
vote
1
answer
1k
views
Jenkins - set options in a shared library for all pipelines that use the shared library
I have a bunch of repositories which use (parts of) the same Jenkins shared library for running tests, docker builds, etc. So far the shared library has greatly reduced the maintenance costs for these ...
1
vote
0
answers
157
views
Is it possible to build and run Gradle project A as a part of build scenario of project B?
Hierarchy of projects in my Gradle setup
Project name
Depends on
Description
engine
Different 3rd party libraries, not depends on local projects
A game engine I'm working on
game
:engine
Main logic of ...
0
votes
1
answer
410
views
Updating a table "Y" in file "B" with new added rows from table "X" in file "A"
I am trying to create an "instant cloud flow" on Power Automate.
Context:
Excel file "A" contains a table "X" which gets updated regularly with new rows at the bottom ...
0
votes
1
answer
117
views
i need to tell selenium to click on the next day in calender im using selenium 4.4 and python 3.10.6
guys I need your assistance.
I have the next HTML page
enter image description here
I need to write a code to check today's date and automatically click on the next day in the calendar enter image ...
0
votes
1
answer
557
views
In my robot framework, i want to have the ability to execute my smoke and regression tests separately via Jenkins. How can achieve the same?
In my robot framework, I have 80 test cases which are available in a git repo. Out of these 80,i want to run 10 test cases as a part of Smoke testing which are tagged as Smoke. Also, if i want to run ...
3
votes
0
answers
147
views
Teamcity Build Chain Optional Builds
I have a TeamCity project which includes 4 configurations in the build chain like this.
|----> Build A -|
Prebuild-| |----> Test Results
|----> Build B -|
In ...