diff options
author | Micah Anderson <micah@riseup.net> | 2017-04-25 13:42:14 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2017-04-25 13:42:14 -0400 |
commit | f5d1850e7b3831b1ee6374627bb403aa3858a320 (patch) | |
tree | 586704daefadface9d6380ff9596ecb64f00c8bf /.gitlab-ci.yml | |
parent | 64d0b3f97c02dc502a4d6e44b62379170792de8e (diff) |
Fix the pipefail by putting ts inside of ci-build.sh
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2df6eb5c..5654238e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,7 +60,7 @@ deploy_test: except: - master script: - - su -c '/usr/bin/unbuffer ./ci-build.sh | /usr/bin/ts -s' cirunner + - su -c '/usr/bin/unbuffer ./ci-build.sh' cirunner # Latest job will only run on the master branch, which means all merge requests # that are created from branches don't get to deploy to the latest-ci server. @@ -74,4 +74,4 @@ latest: only: - master script: - - su -c '/usr/bin/unbuffer ./ci-build.sh | /usr/bin/ts -s' cirunner + - su -c '/usr/bin/unbuffer ./ci-build.sh' cirunner |