Created
April 16, 2015 13:29
-
-
Save mizzy/ed0e6ce14a924b709825 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline: | |
- name: | |
type: command | |
command: echo "hello, world" | |
- name: command_stage_2 | |
type: command | |
command: echo "hello, world, command_stage_2" | |
- name: command_stage_3 | |
type: command | |
command: echo "hello, world, command_stage_3" | |
- name: parallel builds | |
type: parallel | |
builds: | |
- name: parallel build 1 | |
type: command | |
command: parallel_command_1 | |
- name: parallel build 2 | |
type: command | |
command: parallel_command_2 | |
- name: parallel build 3 | |
type: command | |
command: parallel_command_3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment