mirror of
				https://github.com/Xahau/xahaud.git
				synced 2025-11-04 02:35:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			458 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			458 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env sh
 | 
						|
set -e
 | 
						|
# used as a before/setup script for docker steps in gitlab-ci
 | 
						|
# expects to be run in standard alpine/dind image
 | 
						|
echo $(nproc)
 | 
						|
docker login -u rippled \
 | 
						|
    -p ${ARTIFACTORY_DEPLOY_KEY_RIPPLED} ${ARTIFACTORY_HUB}
 | 
						|
apk add --update py-pip
 | 
						|
apk add \
 | 
						|
    bash util-linux coreutils binutils grep \
 | 
						|
    make ninja cmake build-base gcc g++ abuild git \
 | 
						|
    python3 python3-dev
 | 
						|
pip3 install awscli
 | 
						|
# list curdir contents to build log:
 | 
						|
ls -la
 |