Use generic user for both zuul v2 and v3
Zuul v2 uses 'jenkins' as user, but Zuul v3 uses 'zuul'. Using $USER solves it for both cases. Change-Id: I42cfcd4d8dee2ff3a99e42a5a64f3c38163972b8
This commit is contained in:
		@@ -21,7 +21,7 @@ function generate_testr_results {
 | 
			
		||||
        sudo /usr/os-testr-env/bin/subunit2html $BASE/logs/testrepository.subunit $BASE/logs/testr_results.html
 | 
			
		||||
        sudo gzip -9 $BASE/logs/testrepository.subunit
 | 
			
		||||
        sudo gzip -9 $BASE/logs/testr_results.html
 | 
			
		||||
        sudo chown jenkins:jenkins $BASE/logs/testrepository.subunit.gz $BASE/logs/testr_results.html.gz
 | 
			
		||||
        sudo chown $USER:$USER $BASE/logs/testrepository.subunit.gz $BASE/logs/testr_results.html.gz
 | 
			
		||||
        sudo chmod a+r $BASE/logs/testrepository.subunit.gz $BASE/logs/testr_results.html.gz
 | 
			
		||||
    fi
 | 
			
		||||
}
 | 
			
		||||
@@ -35,13 +35,13 @@ source openrc admin admin
 | 
			
		||||
# Go to the keystoneclient dir
 | 
			
		||||
cd $KEYSTONECLIENT_DIR
 | 
			
		||||
 | 
			
		||||
sudo chown -R jenkins:stack $KEYSTONECLIENT_DIR
 | 
			
		||||
sudo chown -R $USER:stack $KEYSTONECLIENT_DIR
 | 
			
		||||
 | 
			
		||||
# Run tests
 | 
			
		||||
echo "Running keystoneclient functional test suite"
 | 
			
		||||
set +e
 | 
			
		||||
# Preserve env for OS_ credentials
 | 
			
		||||
sudo -E -H -u jenkins tox -efunctional
 | 
			
		||||
sudo -E -H -u $USER tox -efunctional
 | 
			
		||||
EXIT_CODE=$?
 | 
			
		||||
set -e
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user