mirror of
				https://github.com/redhat-developer/odo.git
				synced 2025-10-19 03:06:19 +03:00 
			
		
		
		
	 c7f3f3b1d1
			
		
	
	c7f3f3b1d1
	
	
	
		
			
			* reduce test make targets, organize test file structure Signed-off-by: anandrkskd <anandrkskd@gmail.com> * remove report collection Signed-off-by: anandrkskd <anandrkskd@gmail.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			505 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			505 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| LOGFILE="pr-${GIT_PR_NUMBER}-kubernetes-tests-${BUILD_NUMBER}"
 | |
| 
 | |
| source .ibm/pipelines/functions.sh
 | |
| 
 | |
| ibmcloud login --apikey "${API_KEY_QE}"
 | |
| ibmcloud target -r "${IBM_REGION}"
 | |
| ibmcloud ks cluster config --cluster "${IBM_KUBERNETES_ID}" --admin
 | |
| 
 | |
| cleanup_namespaces
 | |
| export SKIP_USER_LOGIN_TESTS=true
 | |
| (
 | |
|     set -e
 | |
|     make install
 | |
|     make test-integration
 | |
|     make test-e2e
 | |
| ) |& tee "/tmp/${LOGFILE}"
 | |
| 
 | |
| RESULT=${PIPESTATUS[0]}
 | |
| 
 | |
| save_logs "${LOGFILE}" "Kubernetes Tests" ${RESULT}
 | |
| 
 | |
| exit ${RESULT}
 |