2017-08-19 18:10:17 +08:00
|
|
|
# This script is run in the discourse_test docker image
|
|
|
|
# Available environment variables:
|
|
|
|
# => COMMIT_HASH used by the discourse_test docker image to load a specific commit of discourse
|
|
|
|
# this can also be set to a branch, e.g. "origin/tests-passed"
|
2017-08-22 20:47:29 +08:00
|
|
|
# See lib/tasks/docker.rake for more information
|
2017-08-19 18:10:17 +08:00
|
|
|
|
2014-06-20 07:26:25 +08:00
|
|
|
def run_or_fail(command)
|
|
|
|
pid = Process.spawn(command)
|
|
|
|
Process.wait(pid)
|
|
|
|
exit 1 unless $?.exitstatus == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
unless ENV['NO_UPDATE']
|
|
|
|
run_or_fail("git remote update")
|
|
|
|
|
|
|
|
checkout = ENV['COMMIT_HASH'] || "HEAD"
|
|
|
|
run_or_fail("git checkout #{checkout}")
|
|
|
|
run_or_fail("bundle")
|
|
|
|
end
|
|
|
|
|
2017-08-22 20:47:29 +08:00
|
|
|
run_or_fail("bundle exec rake docker:test")
|