From 9da1da6a303ce1a7887fb2a5abc011f5542ae330 Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Tue, 31 Jan 2023 10:31:27 +0900 Subject: [PATCH] Add required `pkg-config` and `libyaml-dev` packages These OS packages are required to install sqlite3 and psych gem Related to https://github.com/ruby/psych/pull/541 https://github.com/sparklemotion/sqlite3-ruby/issues/358 --- bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 4b110a64..553331a5 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -30,7 +30,7 @@ install 'development tools' build-essential autoconf libtool gem update --system -N >/dev/null 2>&1 install Git git -install SQLite sqlite3 libsqlite3-dev +install SQLite sqlite3 libsqlite3-dev pkg-config install memcached memcached install Redis redis-server install RabbitMQ rabbitmq-server @@ -53,6 +53,7 @@ GRANT ALL PRIVILEGES ON activerecord_unittest2.* to 'rails'@'localhost'; GRANT ALL PRIVILEGES ON inexistent_activerecord_unittest.* to 'rails'@'localhost'; SQL +install 'Psych dependencies' libyaml-dev install 'Nokogiri dependencies' libxml2 libxml2-dev libxslt1-dev install 'Blade dependencies' libncurses5-dev install 'ruby-vips dependencies' libvips