From 8e241aa5757c16f6c6fb8a10f87d1a4cc6f2c2d2 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 29 Sep 2020 14:25:36 +0200 Subject: [PATCH] :green_heart: gcc and build-base are required --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0f4907f..5c3c80c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,8 @@ unit_tests: image: golang:1.15-alpine stage: test before_script: - - apk add -X http://dl-cdn.alpinelinux.org/alpine/edge/testing libsrt-dev + - apk add --no-cache build-base gcc + - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing libsrt-dev script: - go test -v -covermode=count -coverprofile cover.cov ./... - go tool cover -func=cover.cov