fix: Add git to test builders

This commit is contained in:
Robert Prehn 2021-08-04 22:10:32 -05:00
parent 87fddcf89b
commit 344465d0a4

View file

@ -24,7 +24,9 @@ variables:
- deps/ - deps/
services: services:
- name: postgres:12 - name: postgres:12
script: script/cibuild script:
- apk add git
- script/cibuild
test_1.10.4: test_1.10.4:
<<: *test_template <<: *test_template
@ -38,6 +40,7 @@ test:
<<: *test_template <<: *test_template
image: "elixir:1.12.1-alpine" image: "elixir:1.12.1-alpine"
script: script:
- apk add git
- script/cibuild covered - script/cibuild covered
artifacts: artifacts:
paths: paths:
@ -52,6 +55,7 @@ credo:
- _build/ - _build/
- deps/ - deps/
script: script:
- apk add git
- mix local.hex --force - mix local.hex --force
- mix local.rebar --force - mix local.rebar --force
- mix deps.get - mix deps.get