Skip to content

Commit 44b77b3

Browse files
committed
On Windows CI use PostgreSQL 1.2.x
1 parent 712e549 commit 44b77b3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

‎Gemfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ git_source(:) { |repo| "https://.com/#{repo}.git" }
77
gemspec
88

99
gem "bcrypt"
10-
gem "pg", ">= 0.18.0"
10+
11+
if RUBY_PLATFORM =~ /win32/
12+
gem "pg", "1.2.3", platform: [:mswin, :mingw]
13+
else
14+
gem "pg", ">= 0.18.0", platform: :ruby
15+
end
16+
1117
gem "sqlite3", "~> 1.4"
1218
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
1319

0 commit comments

Comments
 (0)