diff options
Diffstat (limited to 'acid.yaml.example')
-rw-r--r-- | acid.yaml.example | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/acid.yaml.example b/acid.yaml.example index b34abf0..c0b9b28 100644 --- a/acid.yaml.example +++ b/acid.yaml.example @@ -61,4 +61,14 @@ projects: # Project build script. build: | echo Computing line count... - find . -not -path '*/.*' -type f -print0 | xargs -0 cat | wc -l + mkdir ~/acid-deploy + find . -not -path '*/.*' -type f -print0 | xargs -0 cat | wc -l \ + > ~/acid-deploy/count + + # Project deployment script (runs locally in a temporary directory). + deploy: | + cat count + + # Time limit in time.ParseDuration format. + # The default of one hour should suffice. + timeout: 1h |