mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			477 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			477 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Runs tests for all supported PHP versions
 | |
| # Usage examples:
 | |
| # - ./run-tests-for-all-php-versions.sh --group 20221124
 | |
| # - ./run-tests-for-all-php-versions.sh --exclude-group slow
 | |
| 
 | |
| docker-compose run php72 ./run-tests.sh $@ && \
 | |
| docker-compose run php73 ./run-tests.sh $@ && \
 | |
| docker-compose run php74 ./run-tests.sh $@ && \
 | |
| docker-compose run php80 ./run-tests.sh $@ && \
 | |
| docker-compose run php81 ./run-tests.sh $@ && \
 | |
| docker-compose run php82 ./run-tests.sh $@
 |