mirror of
				https://github.com/docker/compose.git
				synced 2025-10-31 11:14:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -ex
 | |
| 
 | |
| if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
 | |
|     script/build/linux
 | |
|     # TODO: requires auth to push, so disable for now
 | |
|     # script/build/image master
 | |
|     # docker push docker/compose:master
 | |
| else
 | |
|     script/setup/osx
 | |
|     script/build/osx
 | |
| fi
 |