mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 08:31:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			272 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			272 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh -eux
 | 
						|
 | 
						|
curl https://cmake.org/files/v3.4/cmake-3.4.0-Linux-x86_64.tar.gz | tar xz -C /tmp --strip 1
 | 
						|
 | 
						|
/tmp/bin/cmake -DCOVERAGE=true .
 | 
						|
make 
 | 
						|
make test
 | 
						|
 | 
						|
pip install --user cpp-coveralls 'requests[security]'
 | 
						|
coveralls --exclude third-party --gcov-options '\-lp'; fi
 |