From d398b88874fb4e6b2539a5729b830c98b30e2fbb Mon Sep 17 00:00:00 2001 From: David Taylor Date: Fri, 21 Jul 2017 12:28:32 +0100 Subject: [PATCH] Remove docker rake patch, as now merged into core --- .travis.yml | 2 +- docker_patched.rake | 68 --------------------------------------------- 2 files changed, 1 insertion(+), 69 deletions(-) delete mode 100644 docker_patched.rake diff --git a/.travis.yml b/.travis.yml index f6bcf5d..f922803 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,10 +10,10 @@ script: - > docker run -e "COMMIT_HASH=origin/tests-passed" + -e "SKIP_CORE=1" -e "LOAD_PLUGINS=1" -e SINGLE_PLUGIN=$plugin_name -e MODULE="Acceptance: Chat Integration" -v $(pwd):/var/www/discourse/plugins/$plugin_name - -v $(pwd)/docker_patched.rake:/var/www/discourse/lib/tasks/docker.rake discourse/discourse_test:release \ No newline at end of file diff --git a/docker_patched.rake b/docker_patched.rake deleted file mode 100644 index be06906..0000000 --- a/docker_patched.rake +++ /dev/null @@ -1,68 +0,0 @@ - -def run_or_fail(command) - pid = Process.spawn(command) - Process.wait(pid) - $?.exitstatus == 0 -end - -desc 'Run all tests (JS and code in a standalone environment)' -task 'docker:test' do - begin - - puts "Cleaning up old test tmp data in tmp/test_data" - `rm -fr tmp/test_data && mkdir -p tmp/test_data/redis && mkdir tmp/test_data/pg` - - puts "Starting background redis" - @redis_pid = Process.spawn('redis-server --dir tmp/test_data/redis') - - @postgres_bin = "/usr/lib/postgresql/9.5/bin/" - `#{@postgres_bin}initdb -D tmp/test_data/pg` - - # speed up db, never do this in production mmmmk - `echo fsync = off >> tmp/test_data/pg/postgresql.conf` - `echo full_page_writes = off >> tmp/test_data/pg/postgresql.conf` - `echo shared_buffers = 500MB >> tmp/test_data/pg/postgresql.conf` - - puts "Starting postgres" - @pg_pid = Process.spawn("#{@postgres_bin}postmaster -D tmp/test_data/pg") - - - ENV["RAILS_ENV"] = "test" - - @good = run_or_fail("bundle exec rake db:create db:migrate") - unless ENV["JS_ONLY"] - if ENV["SINGLE_PLUGIN"] - @good &&= run_or_fail("bundle exec rake plugin:spec['#{ENV["SINGLE_PLUGIN"]}']") - else - @good &&= run_or_fail("bundle exec rspec") - - if ENV["LOAD_PLUGINS"] - @good &&= run_or_fail("bundle exec rake plugin:spec") - end - end - end - - unless ENV["RUBY_ONLY"] - unless["SINGLE_PLUGIN"] - @good &&= run_or_fail("eslint app/assets/javascripts") - @good &&= run_or_fail("eslint --ext .es6 app/assets/javascripts") - @good &&= run_or_fail("eslint --ext .es6 test/javascripts") - @good &&= run_or_fail("eslint test/javascripts") - end - @good &&= run_or_fail("bundle exec rake qunit:test['600000']") - end - - ensure - puts "Terminating" - - Process.kill("TERM", @redis_pid) - Process.kill("TERM", @pg_pid) - Process.wait @redis_pid - Process.wait @pg_pid - end - - if !@good - exit 1 - end - -end