nci/projects/project1/config.json

16 lines
434 B
JSON
Raw Normal View History

2015-04-12 22:19:42 +00:00
{
"name": "project1",
"scm": {
"type": "mercurial",
"repository": "./test/repos/mercurial",
"rev": "default"
},
"steps": [
2015-05-03 22:58:04 +00:00
{"type": "shell", "cmd": "echo \"hello, cur dir is `pwd`\""},
2015-05-05 23:11:28 +00:00
{"type": "shell", "name": "sleep", "cmd": "sleep 4"},
2015-04-12 22:19:42 +00:00
{"type": "shell", "cmd": "echo 1 > 1.txt"},
{"type": "shell", "cmd": "sleep 4"},
{"type": "shell", "cmd": "echo 2 > 2.txt"},
{"type": "shell", "cmd": "cat 1.txt 2.txt"}
2015-04-12 22:19:42 +00:00
]
}