Skip to content

Commit

Permalink
try rails8
Browse files Browse the repository at this point in the history
  • Loading branch information
rubys committed Nov 2, 2024
1 parent 32aa0d8 commit fcfd5c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/results/solid_queue_sqlite3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ ENV DATABASE_URL="sqlite3:///data/production.sqlite3"
ENTRYPOINT ["/rails/bin/docker-entrypoint"]

# Start the server by default, this can be overwritten at runtime
EXPOSE 3000
EXPOSE 80
VOLUME /data
CMD ["./bin/rails", "server"]
CMD ["bundle", "exec", "thrust", "./bin/rails", "server"]
3 changes: 1 addition & 2 deletions test/test_solidq_sqlite3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
require_relative "base"

class TestSolidQueueSqlite3 < TestBase
@rails_options = "--database=sqlite3"
@rails_options = "--database=sqlite3 --main"

def app_setup
system "bundle add solid_queue"
FileUtils.touch "fly.toml"
IO.write "app/jobs/DummyJob.rb", "class DummyJob < ApplicationJob; end"
end
Expand Down

0 comments on commit fcfd5c9

Please sign in to comment.