I am running dpkg-buildpackage with the environment variable DEB_BUILD_OPTIONS set to nocheck. This compiles but skips the testing. With which command can I execute the checking manually after dpkg-buildpackage has completed?
Execute check manually after dpkg-buildpackage DEB_BUILD_OPTIONS=nocheck
1.1k Views Asked by Lemon Sky At
1
There are 1 best solutions below
Related Questions in DEBIAN
- How to restrict user access on mounted NSFv4 share with all_squash option?
- Obtaining the user's home directory for a daemon application running as root in linux
- Make Bind DNS server to request only root DNS servers of IANA website
- Mokutil does'nt work in Google Cloud Compute Engine
- Install Gitlab Repository : Wordlists
- PHP apache2 - php script cli will write txt file but browser will not
- Docker error at build E: Release file for http://deb.debian.org/debian-security/dists/bookworm-security/InRelease is not valid yet
- Slow loading of WordPress site on development server despite fast database queries
- How to use pyinstaller on debian?
- Python 3.12 pip install mod_wsgi fails
- Using Packer to install Debian
- How to install PHP Extension SQLSRV on Azure App Service (PHP 8.2 / Linux)?
- "Read-only filesystem" error during docker build
- Python code for raspberry pi not "alt+tabbing" to new window with GPIO button
- Resolve dependencies of an arbitrary Debian or Ubuntu package
Related Questions in DPKG-BUILDPACKAGE
- How do I build a debian package containing gettext .mo-files
- DEB how do I save the configuration files of packages that are deleted during the installation of my package?
- noudeb default dpkg-buildpackage in pdebuild
- dpkg-shlibdeps: error: no dependency information found
- Prevent dpkg-build from overriding flags set in CMakeLists.txt during package building
- Dpkg force stop after preinst
- dpkg-buildpackage unrecognized option: `--runstatedir=/run'
- JFrog not showing any 'Debian Info' for package built on Ubuntu Jammy
- Make a deb package that depends on other package installed from deb file
- dpkg-buildpackage with cookiecutter invalid or non-existing path to the source directory: debian/sampleproject
- Problems packaging on buster
- Execute check manually after dpkg-buildpackage DEB_BUILD_OPTIONS=nocheck
- How to get the deb package located directory in preinst
- How pass semicolon to dh_auto_configure
- Debian Packaging Without Build Tool
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It is all defined in
debian/rulesYou should probably look for an upstream tests or for the content ofdebian/testsif present.So basically the
DEB_BUILD_OPTIONSis just an environment variable and it's up to the maintainer of d/rules how to handle it. dpkg-buildpackage doesn't care about it, it is just the makefile -debian/ruleswhich has some code checking for this var.For example:
The official docs: https://www.debian.org/doc/debian-policy/ch-source.html#s-debianrules-options