more samples for see terminal output

This commit is contained in:
oleg 2015-06-14 23:18:40 +03:00
parent 996736916b
commit 9f4be8976e
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,20 @@
name: nci
# still cloning fake repo, coz no git support
scm:
type: mercurial
repository: ./test/repos/mercurial
rev: default
notify:
on:
- fail
to:
console:
steps:
- cmd: sleep 2
- cmd: >
cd ../../../../ &&
npm test

View File

@ -35,3 +35,9 @@ steps:
# - cmd: sleep 4
- cmd: echo 2 > 2.txt
- cmd: cat 1.txt 2.txt
- shell: /bin/bash
cmd: >
for i in {1..30}; do
echo "tick $i";
sleep 0.3;
done;