Questions tagged [build]

The process of converting source code files into standalone software artifact(s) that can be run on a computer

In the field of computer software, the term software build refers either to the process of converting source code files into standalone software artifact(s) that can be run on a computer, or the result of doing so.

Useful Links

23199 questions
9
votes
2 answers

docker build with Ubuntu 18.04 image hangs after prompting for Country of origin for keyboard

When I build a Ubuntu 18.04 image with docker it prompts for Country of origin for keyboard: and after I enter a number it hangs. Here is my Dockerfile: FROM ubuntu:18.04 RUN apt update RUN apt install software-properties-common -y RUN…
Dean Schulze
  • 9,633
  • 24
  • 100
  • 165
9
votes
2 answers

jenkins double email

Each time a jenkins build fails I get two emails instead of one. They have a slightly different subject text: email 1: "Jenkins build is still unstable: MyAppName Nightly #47" email 2: "Jenkins build is still unstable: MyAppName Nightly » myAppName…
nemoo
  • 3,269
  • 4
  • 38
  • 51
9
votes
3 answers

Mingw build - depends on DLL not native to windows

I'm compiling my library for export as a shared library using MinGW (GCC 4.5.0). I do this by compiling all the source files using MAKE commands similar to: gcc -shared -c mysource.cpp -o mysource.o And then finally: gcc -shared -lstdc++ -lm…
J T
  • 4,946
  • 5
  • 28
  • 38
9
votes
2 answers

Forcing a TFS2010 workflow build to FAIL instead of PARTIALLY SUCCEED

I currently have a custom workflow activity to run an external process, after the solution has been compiled successfully, that returns an ExitCode <> 0 if the external process has failed. Once I know that the process has failed, I want to set the…
Vermin
  • 917
  • 2
  • 11
  • 23
9
votes
10 answers

Keystore Not Found for Signing Config 'release'

I'm having a problem while running this command on Flutter: flutter build appbundle --target-platform android-arm,android-arm64,android-x64 which I need to run in order to execute flutter build apk. build.gradle def keystoreProperties = new…
t0m3r
  • 477
  • 1
  • 4
  • 15
9
votes
2 answers

GitHub Actions: How to access to the log of current build via Terminal

I'm trying to get familiar with Github Actions. I have configured my workflow in a way, that every time I push my code to GitHub, the code will automatically be built and pushed to heroku. How can I access the build log information in terminal…
do-it-yourself
  • 195
  • 1
  • 2
  • 9
9
votes
1 answer

How to fix unknown command error in CMake, when I using Conan?

I've got CMakeLists.txt file: project(ip_filter LANGUAGES CXX) cmake_minimum_required(VERSION 2.8) include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) conan_basic_setup() add_executable(ip_filter ip_filter.cpp) target_link_libraries(ip_filter…
Bogdasar
  • 181
  • 1
  • 1
  • 9
9
votes
1 answer

Trigger Jenkins Job from Bitbucket on Pull Request

Hoping to gather insight from professionals. My end goal is to trigger a jenkins build whenever a bitbucket pull request happens. If anyone could give me an ELI5(explain like I am 5) answer it would be greatly appreciated. Sorry if this is the wrong…
Showler
  • 93
  • 1
  • 1
  • 4
9
votes
1 answer

How to play sound on Xcode build success or error?

I want to play a success.mp3 sound on Xcode build success and a failure.mp3 on Xcode build failure. How can I do so? However, I can play sound after build finishes using this trick but need to distinguish success and failure cases.
Sazzad Hissain Khan
  • 37,929
  • 33
  • 189
  • 256
9
votes
4 answers

Expo fails to build, Request failed with status code 400

I'm trying to build a project in expo react native project. My expo version is 3.2.2, sdkVersion is 35. When I ran in cmd (on Windows 10) set EXPO_DEBUG=true expo build:android -c I got: Request failed with status code 400 Error: Request failed…
Jonny Piazzi
  • 3,684
  • 4
  • 34
  • 81
9
votes
3 answers

Shipping GTK+ apps for macOS with Xcode

My setup: macOS Mojave Xcode 10.3 I'm looking into the possibility of shipping apps on macOS using GTK+. Unfortunately, the whole process seems daunting to me according to GTK+'s macOS build/bundle/integration guide:…
kakyo
  • 10,460
  • 14
  • 76
  • 140
9
votes
3 answers

In project 'app' a resolved Google Play services library dependency depends on another at an exact version (e.g. "[1.3.1 ,2.3]",

I tried to add the SSO to my project I referred this link sso After adding this line in build.gradle(Module:app) //Microsoft implementation 'com.microsoft.identity.client:msal:0.2.+' am getting the following error In project 'app' a resolved…
fazil
  • 1,155
  • 11
  • 24
9
votes
4 answers

Why are changes in source not always reflected in machine code after build while rebuild works?

Sometimes when I change code in my Qt project (Qt Creator 2.1.0 with mingw32), the changes don't get reflected in the produced machine code after building it. This happens mostly when I change things like default values in constructors or the order…
atamanroman
  • 11,607
  • 7
  • 57
  • 81
9
votes
3 answers

How to include an HTML vignette in a binary R package

I wrote an R package for internal purposes and also added some vignettes. When I use devtools::install(build_vignettes = TRUE), all vignettes are installed properly on my machine. But in order to distribute the package to colleages, I would like to…
der_grund
  • 1,898
  • 20
  • 36
9
votes
1 answer

Xcode 10 iOS app build, "hidden" task takes most of build time

After changing single line of code and performing Xcode 10.1 incremental build in large project, Xcode spends most of build time in "Compile swift source files" phase after completing all listed tasks (compile changed files and merge swiftmodule are…
chupacabra
  • 105
  • 7