Skip to content

Commit

Permalink
Don't run PostgreSQL integration tests on Ruby 3.2 in CI
Browse files Browse the repository at this point in the history
They are occasionally resulting in a segfault when trying to
create an OpenSSL cipher when testing the column_encryption
plugin.
  • Loading branch information
jeremyevans committed Dec 21, 2022
1 parent f3c5b14 commit e8275c5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,8 @@ task :spec_ci=>[:spec_core, :spec_model, :spec_plugin, :spec_core_ext] do
ENV['SEQUEL_MYSQL_URL'] = "mysql2://#{mysql_host}/sequel_test?user=root#{mysql_password}&useSSL=false"
end

if RUBY_VERSION >= '2.3'
Rake::Task['spec_postgres'].invoke
end

if RUBY_VERSION >= '2.4'
Rake::Task['spec_postgres'].invoke
Rake::Task['spec_sqlite'].invoke
Rake::Task['spec_mysql'].invoke
end
Expand Down

0 comments on commit e8275c5

Please sign in to comment.