Merge "build: npm/rake entry point for screenshots upload"

This commit is contained in:
jenkins-bot 2018-03-08 14:56:08 +00:00 committed by Gerrit Code Review
commit d1e3a4147d
2 changed files with 15 additions and 1 deletions

View file

@ -13,3 +13,16 @@ task :default => [:test]
desc 'Run all build/tests commands (CI entry point)'
task :test => [:rubocop]
desc 'Upload screenshots to commons.wikimedia.org'
task :commons_upload do
require 'commons_upload'
required_envs = %w[
MEDIAWIKI_API_UPLOAD_URL
MEDIAWIKI_USER
MEDIAWIKI_PASSWORD
]
has_all_envs = required_envs.all? { |env| ENV.key?(env) }
fail "Requires env variables:\n#{required_envs}" unless has_all_envs
CommonsUpload.images
end

View file

@ -6,7 +6,8 @@
"scripts": {
"test": "grunt test",
"doc": "jsduck",
"postdoc": "grunt copy:jsduck"
"postdoc": "grunt copy:jsduck",
"screenshots-all": "grunt screenshots-all"
},
"devDependencies": {
"babel-polyfill": "6.9.1",