22 lines
		
	
	
		
			358 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			358 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| kind: pipeline
 | |
| type: docker
 | |
| name: default
 | |
| 
 | |
| steps:
 | |
|   - name: hello world
 | |
|     image: alpine
 | |
|     commands:
 | |
|       - echo hello
 | |
|       - echo world
 | |
|   - name: python
 | |
|     image: python
 | |
|     commands:
 | |
|       - python3 -c "print(6 * 7)"
 | |
|   - name: gcc
 | |
|     image: gcc
 | |
|     commands:
 | |
|       - cd pairingheap
 | |
|       - gcc -o pairingheap pairingheap.c
 | |
|       - ./pairingheap
 |