From 1ab5e6a2ccd8583037d0fae4dad0994e3d53502f Mon Sep 17 00:00:00 2001 From: curben Date: Tue, 28 May 2019 12:43:57 +0930 Subject: [PATCH] fix: use GNU's grep instead of the default busybox's busybox grep is too slow, its '-F -x' parameters may be buggy --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8cbff692..b0319a49 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ image: alpine:latest # Use the latest version of Alpine Linux docker image before_script: # Install dependencies - - 'which ssh-agent || ( apk update && apk add openssh-client git)' + - 'which ssh-agent || ( apk update && apk add openssh-client git grep)' # Run ssh-agent - eval $(ssh-agent -s)