mirror of
				https://github.com/Xahau/xahaud.git
				synced 2025-11-04 10:45:50 +00:00 
			
		
		
		
	Reduce the verbosity of CI scripts
This commit is contained in:
		
				
					committed by
					
						
						manojsdoshi
					
				
			
			
				
	
			
			
			
						parent
						
							593677ee82
						
					
				
				
					commit
					1502e6e2cd
				
			@@ -1,5 +1,5 @@
 | 
			
		||||
#!/usr/bin/env sh
 | 
			
		||||
set -ex
 | 
			
		||||
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)
 | 
			
		||||
@@ -13,4 +13,3 @@ apk add \
 | 
			
		||||
pip3 install awscli
 | 
			
		||||
# list curdir contents to build log:
 | 
			
		||||
ls -la
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
#!/usr/bin/env sh
 | 
			
		||||
set -ex
 | 
			
		||||
set -e
 | 
			
		||||
action=$1
 | 
			
		||||
filter=$2
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
#!/usr/bin/env sh
 | 
			
		||||
set -ex
 | 
			
		||||
set -e
 | 
			
		||||
install_from=$1
 | 
			
		||||
use_private=${2:-0} # this option not currently needed by any CI scripts,
 | 
			
		||||
                    # reserved for possible future use
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
#!/usr/bin/env sh
 | 
			
		||||
set -ex
 | 
			
		||||
set -e
 | 
			
		||||
docker login -u rippled \
 | 
			
		||||
    -p ${ARTIFACTORY_DEPLOY_KEY_RIPPLED} "${ARTIFACTORY_HUB}"
 | 
			
		||||
# this gives us rippled_version :
 | 
			
		||||
@@ -19,4 +19,3 @@ for label in ${rippled_version} latest ; do
 | 
			
		||||
    docker push \
 | 
			
		||||
        "${ARTIFACTORY_HUB}/${DPKG_CONTAINER_NAME}:${label}_${CI_COMMIT_REF_SLUG}"
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user