This also gets rid of --log-type, since the nested log type isn't useful in a multi-threaded situation, and nobody cares about the "pretty" log type.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
source common.sh
 | 
						|
 | 
						|
clearStore
 | 
						|
 | 
						|
path=$(nix-build dependencies.nix --no-out-link)
 | 
						|
 | 
						|
# Test nix-store -l.
 | 
						|
[ "$(nix-store -l $path)" = FOO ]
 | 
						|
 | 
						|
# Test compressed logs.
 | 
						|
clearStore
 | 
						|
rm -rf $NIX_LOG_DIR
 | 
						|
(! nix-store -l $path)
 | 
						|
nix-build dependencies.nix --no-out-link --option build-compress-log true
 | 
						|
[ "$(nix-store -l $path)" = FOO ]
 |