mirror of
				https://github.com/appleboy/drone-ssh.git
				synced 2025-10-29 00:51:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			359 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			359 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| local pipeline = import 'pipeline.libsonnet';
 | |
| local name = 'drone-ssh';
 | |
| 
 | |
| [
 | |
|   pipeline.test,
 | |
|   pipeline.build(name, 'linux', 'amd64'),
 | |
|   pipeline.build(name, 'linux', 'arm64'),
 | |
|   pipeline.build(name, 'linux', 'arm'),
 | |
|   pipeline.release,
 | |
|   pipeline.notifications(depends_on=[
 | |
|     'linux-amd64',
 | |
|     'linux-arm64',
 | |
|     'linux-arm',
 | |
|     'release-binary',
 | |
|   ]),
 | |
| ]
 | 
