From 344465d0a411840c465d701e0b8073dff4fa1b30 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Wed, 4 Aug 2021 22:10:32 -0500 Subject: [PATCH] fix: Add git to test builders --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86b8496f..227331e9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,9 @@ variables: - deps/ services: - name: postgres:12 - script: script/cibuild + script: + - apk add git + - script/cibuild test_1.10.4: <<: *test_template @@ -38,6 +40,7 @@ test: <<: *test_template image: "elixir:1.12.1-alpine" script: + - apk add git - script/cibuild covered artifacts: paths: @@ -52,6 +55,7 @@ credo: - _build/ - deps/ script: + - apk add git - mix local.hex --force - mix local.rebar --force - mix deps.get