From 2a84e5ffe741690158e41745ef7bbea6d73d71f8 Mon Sep 17 00:00:00 2001 From: Arthur Chaloin Date: Fri, 17 Jan 2020 20:29:16 +0100 Subject: [PATCH] fix(ci): add gcc to build image --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c98ba3ec..8daa32e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ k8s controller sanity tests: stage: test image: golang:1.12-alpine3.9 before_script: - - apk add --update git musl-dev + - apk add --update git gcc musl-dev script: - go test ./cmd/controller except: @@ -17,7 +17,7 @@ k8s node sanity tests: stage: test image: golang:1.12-alpine3.9 before_script: - - apk add --update git musl-dev + - apk add --update git gcc musl-dev script: - go test ./cmd/node except: