diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-09-07 12:42:54 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-09-07 12:42:54 +0200 |
commit | eed70681907e5d6ebefb0fb187a3783e3d572807 (patch) | |
tree | bcfc96fba1a9c3e4c6987347381750b00e4b1e99 | |
parent | docker: add bin to PATH (diff) | |
download | cimple-eed70681907e5d6ebefb0fb187a3783e3d572807.tar.gz cimple-eed70681907e5d6ebefb0fb187a3783e3d572807.zip |
add ci script
Diffstat (limited to '')
-rw-r--r-- | .gitattributes | 2 | ||||
-rwxr-xr-x | ci | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 176a458..1fe0c64 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ * text=auto + +/ci text eol=lf @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail + +docker-compose build --pull |