mirror of
				https://github.com/containers/skopeo.git
				synced 2025-11-04 03:20:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			314 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			314 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
 | 
						|
bundle_test_integration() {
 | 
						|
	TESTFLAGS="$TESTFLAGS -check.v"
 | 
						|
	go_test_dir ./integration
 | 
						|
}
 | 
						|
 | 
						|
# subshell so that we can export PATH without breaking other things
 | 
						|
(
 | 
						|
	make binary-local ${BUILDTAGS:+BUILDTAGS="$BUILDTAGS"}
 | 
						|
	make install
 | 
						|
	export GO15VENDOREXPERIMENT=1
 | 
						|
	bundle_test_integration
 | 
						|
) 2>&1
 |