X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=.gitlab-ci.yml;h=54215c318663a60778336c7248d7a4ac4e556ad3;hb=2791ce9a1ff2365ac7256f5e1dc2324dee2f82c9;hp=46fa1c74c3777bef1f7f73c1a77d90747ff02075;hpb=9e0dd21ed637ec7b884570b2ad8705b5fac72580;p=akkoma diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 46fa1c74c..54215c318 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: elixir:1.6.4 +image: elixir:1.7.2 services: - postgres:9.6.2 @@ -9,6 +9,11 @@ variables: POSTGRES_PASSWORD: postgres DB_HOST: postgres +cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - deps + - _build stages: - lint - test @@ -17,6 +22,7 @@ before_script: - mix local.hex --force - mix local.rebar --force - mix deps.get + - mix compile --force - MIX_ENV=test mix ecto.create - MIX_ENV=test mix ecto.migrate