Questions tagged [build-automation]

Build automation is the act of scripting or automating tasks like compiling, packaging, running tests, deployment etc.

Build automation is the act of scripting or automating a wide variety of tasks that software developers do in their day-to-day activities including things like:

  • Compiling computer source code into binary code
  • Packaging binary code
  • Running tests
  • Deployment to production systems
  • Creating documentation and/or release notes

Advantages

  • Improve product quality
  • Accelerate the compile and link processing
  • Eliminate redundant tasks
  • Minimize "bad builds"
  • Eliminate dependencies on key personnel
  • Have history of builds and releases in order to investigate issues
  • Save time and money - because of the reasons listed above.

See also , and .

1857 questions
0
votes
1 answer

AddBuildProperty on a Desktop (not iOS) Unity Xcode build?

In Unity, the excellent post processor makes it very easy to, say, add a build flag on an iOS project... public class BuildPostProcessor { public static void OnPostProcessBuild(BuildTarget target, string path) ... PBXProject project…
Fattie
  • 27,874
  • 70
  • 431
  • 719
0
votes
1 answer

How can I make a simple gradle build script to compile a java program?

I am trying to learn how to use gradle to make compiling and packaging my java programs easier. I already have experience programming in java and usually I just use eclipse to manage this, or, I just compile my programs manually (using javac in a…
smcbot
  • 15
  • 5
0
votes
1 answer

Angular Application Deployment IIS Automation like using Docker/Jenkins etc

I am deploying angular application in IIS server manually like copying the build from my system to particular IIS server location. My code is maintained in TFS repository. Backend for my application is Mulesoft and Mulesoft is deployed in cloudhub…
Joe
  • 48
  • 6
0
votes
2 answers

Ant not creating tar files

I have a little ant script which should create 3 tar files.
Will
  • 8,246
  • 16
  • 60
  • 92
0
votes
1 answer

k6 same environment variables in multiple export functions

Can I use same environment variables in multiple export function ? export function login() { group('Login API', function () { __ENV.code = 'code getting from api response'; console.log("code is : " + __ENV.code); //…
0
votes
2 answers

How to generate Cucumber extent reports 4 through Gradle

I am executing the Cucumber automation test scripts through gradle, though i am able to execute the test successfully but reports are not getting generated. I did give a try with with below gradle tasks one at a time. Cucumber gradle tasks copied…
0
votes
0 answers

Replace a line string in a File with looped list of files paths from a directory

I am writing a python script but open to doing the same in batch script to replace line strings. I have a directory which has few files in it and have a file.json in a different directory. I want to replace a line in file.json with the full path of…
mc940
  • 9
  • 3
0
votes
0 answers

Deploy MERN App to Heroku from BitBucket CI/CD

My folder structure is client (React) server (Express) .gitignore bitbucket-pipelines.yml README.md How to define my package.json and bitbucket-pipelines.yml for deploying it to BitBucket Pipeline and then to Heroku?
0
votes
1 answer

How can I create and manage a Lambda Function from Python Script?

I would like to manage my AWS Lambda Functions from Python script, without having to use the AWS Website Console. The idea is to be able to quickly recreate/migrate/setup my applications objects (tables, functions etc.) into a new AWS Cloud Account…
0
votes
1 answer

When a new item is added to SharePoint list, send email notification to users matching item category

I'm trying to build a workflow in Microsoft Power Automate (Microsoft Flow), where users will get email notification when a new item is added to the SharePoint list, but only in case if item is relevant to their responsibilities area (based on one…
Comphard
  • 1
  • 1
0
votes
1 answer

I wanted to download all PDFs from a website rather than doing it manually but i get the SSL error

This is my code snippet and i get the SSL error when i run this code.I tried giving a delay for the code and working on it but i still get the same error. import os import requests from urllib.parse import urljoin from bs4 import BeautifulSoup url =…
0
votes
1 answer

After installation of node and applying commanda for install node modules it will display this errors

npm ERR! Unexpected end of JSON input while parsing near '...ncies":{"jscs":"^1.6.' npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\DHRUV SUTHAR\AppData\Roaming\npm-cache_logs\2020-06-24T06_01_23_323Z-debug.log
0
votes
0 answers

GCCcore error compiling Python 3.8.2 with Easybuild

I am trying to compile and install Python 3.8.2 using Easybuild software and I get this error. gcc: error: -fuse-linker-plugin is not supported in this configuration ln: failed to access libpython3.8.so.1.0: No such file or directory make[3]: ***…
0
votes
1 answer

Only local connections are allowed. Chrome failed to start: crashed. (unknown error: DevToolsActivePort file doesn't exist

I am running Selenium Automation Script From Jenkins+Git+Maven. in local machine, the script working absolutely Perfect but when I run this from Jenkins it gives me below error. OS Linux chrome driver version 83.0.4103.39 chrome version…
0
votes
1 answer

How can i specify which git executable an Azure DevOps build agent uses

I have a git authentication problem on Azure DevOps build agent for some unknown reason authentication only works with the MacPorts version of git: >/usr/bin/git clone --config "http.sslVerify=false" "https://…:…@…/DefaultCollection/…/_git/…"…
Martin
  • 11,577
  • 16
  • 80
  • 110