As a follow-up to the preceding commit's shortening of CI job names,
rename the only job that starts with an upper-case letter to be
consistent with the rest. It was added in 88dedd5e72 (Travis: also
test on 32-bit Linux, 2017-03-05).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			623 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			623 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# Install dependencies required to build and test Git inside container
 | 
						|
#
 | 
						|
 | 
						|
case "$jobname" in
 | 
						|
linux32)
 | 
						|
	linux32 --32bit i386 sh -c '
 | 
						|
		apt update >/dev/null &&
 | 
						|
		apt install -y build-essential libcurl4-openssl-dev \
 | 
						|
			libssl-dev libexpat-dev gettext python >/dev/null
 | 
						|
	'
 | 
						|
	;;
 | 
						|
linux-musl)
 | 
						|
	apk add --update build-base curl-dev openssl-dev expat-dev gettext \
 | 
						|
		pcre2-dev python3 musl-libintl perl-utils ncurses >/dev/null
 | 
						|
	;;
 | 
						|
pedantic)
 | 
						|
	dnf -yq update >/dev/null &&
 | 
						|
	dnf -yq install make gcc findutils diffutils perl python3 gettext zlib-devel expat-devel openssl-devel curl-devel pcre2-devel >/dev/null
 | 
						|
	;;
 | 
						|
esac
 |