Skip to content

julien-montmartin/kcov-appimage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kcov AppImage

An AppImage of Kcov code coverage tool.

Build Status

Handy to use with Travis : Download and run this AppImage rather than rebuilding Kcov from sources on every build.

This kind of Bash script may help you to download the latest AppImage of Kcov from this repo :

getKcovAppImage() {

	trampoline=https://raw.githubusercontent.com/julien-montmartin/kcov-appimage/master/trampoline.txt
	curl -s ${trampoline} | curl -sLK -
	chmod +x ./kcov-x86_64.AppImage
	echo "Running AppImage of $(./kcov-x86_64.AppImage --version)"
}

Call getKcovAppImage and run ./kcov-x86_64.AppImage with the command line you need for your project. See this Rust repo for a working example.