mirror of
				https://github.com/XRPLF/rippled.git
				synced 2025-11-04 11:15:56 +00:00 
			
		
		
		
	This change refactors the CI workflows to leverage the new CI Docker images for Debian, Red Hat, and Ubuntu.
		
			
				
	
	
		
			10 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Global configuration for Conan. This is used to set the number of parallel
 | 
						|
# downloads, uploads, and build jobs. The verbosity is set to verbose to
 | 
						|
# provide more information during the build process.
 | 
						|
core:non_interactive=True
 | 
						|
core.download:parallel={{ os.cpu_count() }}
 | 
						|
core.upload:parallel={{ os.cpu_count() }}
 | 
						|
tools.build:jobs={{ (os.cpu_count() * 4/5) | int }}
 | 
						|
tools.build:verbosity=verbose
 | 
						|
tools.compilation:verbosity=verbose
 |