mirror of
				https://github.com/matrix-org/synapse.git
				synced 2025-11-04 10:11:05 +01:00 
			
		
		
		
	* Factor out more common code from the jenkins scripts * Fix install_and_run path * Poke jenkins * Poke jenkins
		
			
				
	
	
		
			16 lines
		
	
	
		
			304 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			304 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -eux
 | 
						|
 | 
						|
: ${WORKSPACE:="$(pwd)"}
 | 
						|
 | 
						|
export WORKSPACE
 | 
						|
export PYTHONDONTWRITEBYTECODE=yep
 | 
						|
export SYNAPSE_CACHE_FACTOR=1
 | 
						|
 | 
						|
./jenkins/prepare_synapse.sh
 | 
						|
./jenkins/clone.sh sytest https://github.com/matrix-org/sytest.git
 | 
						|
 | 
						|
./sytest/jenkins/install_and_run.sh \
 | 
						|
    --synapse-directory $WORKSPACE \
 |