From 1d66fc6b1f799d796b0c6d0071d166b73303f83c Mon Sep 17 00:00:00 2001 From: Thomas Burkhalter Date: Tue, 3 May 2022 14:59:55 +0200 Subject: [PATCH] Fix ci build --- Gemfile | 1 + Gemfile.lock | 2 ++ images/s2i/Dockerfile | 1 + 3 files changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index 83818abc..fafc2ba4 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,7 @@ source 'https://rubygems.org' gem 'rails', '~> 5.2.x' gem 'pg', '~> 0.21.0' +gem 'activerecord-nulldb-adapter' gem 'nochmal', github: 'puzzle/nochmal' diff --git a/Gemfile.lock b/Gemfile.lock index 1a81acd6..dd085056 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -525,6 +525,7 @@ GEM actionpack (>= 5.2) activesupport (>= 5.2) sprockets (>= 3.0.0) + sqlite3 (1.4.2) swagger-blocks (3.0.0) sysexits (1.2.0) temple (0.8.2) @@ -664,6 +665,7 @@ DEPENDENCIES sentry-raven simplecov-rcov! spring + sqlite3 swagger-blocks turbolinks uglifier diff --git a/images/s2i/Dockerfile b/images/s2i/Dockerfile index bb63d54d..9d343d5b 100644 --- a/images/s2i/Dockerfile +++ b/images/s2i/Dockerfile @@ -27,3 +27,4 @@ RUN bash -c 'gem install bundler:2.2.5 --no-document' USER 1001 ENV RAILS_ENV=production +ENV RAILS_DB_ADAPTER=nulldb