From d73226892a4a6845edcf5291ffbb0951c396fa2f Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 26 Feb 2021 17:28:23 -0600 Subject: [PATCH 1/2] fix: Speed up CI builds with more caches --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 69e7d69d..11e9a0b5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,8 @@ cache: paths: - _build/ - deps/ + - node_modules/ + - apps/app/assets/node_modules/ variables: POSTGRES_PASSWORD: "postgres" @@ -19,7 +21,7 @@ variables: test: stage: test needs: [] - image: "elixir:1.10" + image: "elixir:1.11.3-alpine" services: - name: postgres:12 script: script/cibuild From d5628550249862270f498e97bfd3e3ee7d7dc9b0 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 26 Feb 2021 19:11:22 -0600 Subject: [PATCH 2/2] fix: Revert Elixir version in CI --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11e9a0b5..7afa4031 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ variables: test: stage: test needs: [] - image: "elixir:1.11.3-alpine" + image: "elixir:1.10" services: - name: postgres:12 script: script/cibuild