mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-11-03 18:34:11 +00:00 
			
		
		
		
	Imported using git-ubuntu import.
Changelog parent: a02598fe24047ba35c1a86fbffeafdd51046b770
New changelog entries:
  * Ignore failure of new autopkgtest on ppc64el, where it's not a
    regression.
  * Use /bin/sh, not /bin/bash, for autopkgtest.
		
	
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
ARCH=$(dpkg --print-architecture)
 | 
						|
 | 
						|
failure_code=1
 | 
						|
if [ "$ARCH" = ppc64el ]; then
 | 
						|
	# not a regression; don't block while debugging
 | 
						|
	failure_code=0
 | 
						|
fi
 | 
						|
 | 
						|
env SELECTED_TRIPLETS=ubuntu-cpc:minimized:ubuntu-cpc debian/tests/default-bootstraps || exit $failure_code
 |