[00:46:47] Yippee, build fixed! [00:46:48] Project UploadWizard-api-commons.wikimedia.beta.wmflabs.org build #2765: 09FIXED in 47 sec: https://integration.wikimedia.org/ci/job/UploadWizard-api-commons.wikimedia.beta.wmflabs.org/2765/ [00:56:24] 10Beta-Cluster-Infrastructure: Give selenium users botflags at beta-cluster to hide their edits at the recent-changes - https://phabricator.wikimedia.org/T115370#1724094 (10Luke081515) I would use this global group: http://deployment.wikimedia.beta.wmflabs.org/wiki/Special:GlobalGroupPermissions/Selenium and ad... [01:11:59] 10Beta-Cluster-Infrastructure: Give selenium users botflags at beta-cluster to allow them to hide their edits at the recent-changes - https://phabricator.wikimedia.org/T115370#1724125 (10Krenair) [04:21:11] Project browsertests-MultimediaViewer-en.wikipedia.beta.wmflabs.org-windows_7-internet_explorer-9-sauce build #591: 04FAILURE in 29 min: https://integration.wikimedia.org/ci/job/browsertests-MultimediaViewer-en.wikipedia.beta.wmflabs.org-windows_7-internet_explorer-9-sauce/591/ [05:17:16] PROBLEM - Puppet failure on deployment-cache-parsoid04 is CRITICAL: CRITICAL: 100.00% of data above the critical threshold [0.0] [05:17:16] PROBLEM - Puppet failure on deployment-cache-mobile04 is CRITICAL: CRITICAL: 100.00% of data above the critical threshold [0.0] [05:44:14] (03CR) 10Nikerabbit: "It is an optional dependency." [integration/config] - 10https://gerrit.wikimedia.org/r/245903 (owner: 10Paladox) [06:18:47] 10Continuous-Integration-Config: Whitelist Paladox in Zuul configuration - https://phabricator.wikimedia.org/T114528#1724299 (10revi) [06:37:23] RECOVERY - Free space - all mounts on deployment-bastion is OK: OK: All targets OK [06:53:06] (03CR) 10Paladox: "Ok but this allows the optional test to run." [integration/config] - 10https://gerrit.wikimedia.org/r/245903 (owner: 10Paladox) [07:14:55] (03CR) 10Paladox: "https://gerrit.wikimedia.org/r/#/c/243682/" [integration/config] - 10https://gerrit.wikimedia.org/r/240326 (owner: 10Paladox) [07:49:42] zeljkof: hello [07:49:56] zeljkof: mind doing the checkin over irc here? headphones are broken gotta buy some new ones [07:50:08] and my laptop built-in mic doesn't work either [07:50:16] hashar: :D sure [07:50:51] I am wondering how to get the rake / bundler done right [07:51:19] seems the source project will need to add rake in its Gemfile / spec so we can do 'bundle install && bundle exec rake test' [07:53:12] yes [07:53:34] but they will have to add Rakefile anyway, so we can add rake to Gemfile in the same commit [07:53:48] and there are 20-30 repos total, so not a lot of work [07:56:43] oh [08:00:40] will work on that right now [08:00:46] hashar: anything else? [08:02:28] zeljkof: yeah [08:02:37] I would love to be able to do something like rake test [08:02:45] and have rake magically run bundle install :D [08:05:07] hashar: hm [08:06:24] we could install bundler and rake via puppet, and then the rest of dependencies in "rake test" target [08:06:51] "bundle install" makes sure rake is installed [08:07:03] so there is catch 22 [08:08:20] require 'bundler/gem_tasks' [08:08:26] defines a bunch of tasks [08:08:28] gotta look at what they do :-} [08:08:44] hashar: where does that come from? [08:09:12] me digging in the source code ? :-D [08:09:17] * zeljkof brb [08:16:28] hashar: where in the source code? rake, bundler... [08:16:35] bundler [08:16:44] it has a gem_helper [08:16:47] but that is to build the gem [08:17:51] is there a reason you would prefer "bundle exec rake test" over "bundle install && bundle exec rake test" [08:18:02] I mean, both are one liners [08:20:20] also [08:20:24] hashar: it seems when i upload a patch and jenkins runs the test if it spots an error i look through the log and upload a new patch with the fix but it seems jenkins runs the prevous version of patch if i use recheck. [08:20:46] zeljkof: looking at mediawiki/vagrant it defines deps both in mediawiki-vagrant.gemspec and Gemfile .. [08:22:14] hashar: hm, not sure what is up with that, maybe they create a gem too [08:22:16] let me chek [08:22:17] check [08:23:59] hm, did not find it on rubygems, maybe they build and install it only locally [08:24:21] paladox: do you have any example? [08:24:41] paladox: remember the patch is tested as it has been merged with the tip of the target branch [08:25:10] hashar: Ok, I will find the patch i was checking last night. [08:25:18] zeljkof: I don't get the difference between the two files :-/ They got different list of deps [08:25:45] Gemfile is for mediawiki/vagrant repo, gemspec is for the gem [08:26:05] hashar: I think it was this one https://gerrit.wikimedia.org/r/#/c/245929/ [08:26:06] but I am not sure where the gem code is, or what is it used for :) [08:26:10] will check [08:26:26] which one would bundler uses ? [08:26:57] I was testing to fix the extension-unittests-generic test, But it didnt work so went back to patch set 1. [08:27:20] paladox: 'recheck' and uploading a new patchset are exactly the same things for Zuul [08:27:58] hashar: Ok but it was failing with errors that were from the prevous patch which i fixed in the new patch. [08:29:25] hashar: bundler would use Gemfile [08:29:33] gemspec if for "gem build" [08:35:10] gemspec _is_ for "gem build" [08:35:22] hashar: #endmeeting? ;) [08:48:43] zeljkof: my idea is to have 'rake test', to magically invoke bundler install, set the env then execute whatever we want in the bundler env [08:49:58] I guess the test task can just sh 'bundle install' [08:50:01] sh 'bundle exec rubocop' [08:50:02] etc [08:51:26] f you invoke [08:51:27] bundle exec rake or include Bundler.setup in your Rakefile, then [08:51:28] Bundler will be activated in the subshell as well. [08:51:29] !! [08:52:19] hashar: yes, but the thing is, if we are not positive that rake is installed on the machine, we have to run "bundle install" _before_ "bundle exec rake test" [08:52:36] (03PS1) 10Paladox: [ArticleComments] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246170 [08:52:46] zeljkof: well rake is bundled with ruby isn't it? [08:53:02] but if we make sure both bundler and rake are already installed on the machine (via puppet) then we can just run "bundle exec rake test" [08:53:16] at least on Debian, ruby2.1 provides /usr/bin/rake2.1 https://packages.debian.org/stretch/amd64/ruby2.1/filelist [08:53:22] hashar: not sure, might be with the latest release, but probably depends on the platform [08:53:32] not sure how it is done on jessie, but we can check [08:53:50] for python/javascript, we require folks to have the wrapper (respectively tox/npm) [08:53:57] hashar: This test mw-checks wont allow us to run the check experimental test. How can i run tests that arnt added to the extension like jsonlint or extension-unnitests-generic [08:54:02] so I would assume rake to be already present. [08:54:34] (03PS2) 10Paladox: [ArticleComments] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246170 [08:54:34] hashar: in any way, we can make sure rake (and bundler) are on the machine [08:55:28] hashar: have to go to another meeting, but feel free to ping me with questions, will answer as I can [09:00:54] (03PS1) 10Paladox: [YouTube] Add jsonlint test [integration/config] - 10https://gerrit.wikimedia.org/r/246172 [09:05:06] (03CR) 10Amire80: [C: 031] Delete failing ContentTranslation browsertests Jenkins job [integration/config] - 10https://gerrit.wikimedia.org/r/245469 (https://phabricator.wikimedia.org/T113734) (owner: 10Zfilipin) [09:29:38] zeljkof: I think I found a way :-} [09:30:05] (03CR) 10Paladox: "@Hashar this can be merged now patch was merged. please can you merge this." [integration/config] - 10https://gerrit.wikimedia.org/r/228277 (owner: 10Paladox) [09:30:36] PROBLEM - Puppet failure on deployment-fluorine is CRITICAL: CRITICAL: 100.00% of data above the critical threshold [0.0] [09:32:02] $ rake cucumber [09:32:05] zeljkof: ^^^^ :-D [09:35:57] (03PS4) 10Paladox: Update MathSearch tests [integration/config] - 10https://gerrit.wikimedia.org/r/228277 [09:38:14] (03PS5) 10Paladox: Update MathSearch tests [integration/config] - 10https://gerrit.wikimedia.org/r/228277 [09:44:56] Could someone merge https://gerrit.wikimedia.org/r/#/c/228277/ please [09:45:24] hashar: Could jsonlint be added to check experimental please. [09:53:22] (03CR) 10Hashar: [C: 032] Update MathSearch tests [integration/config] - 10https://gerrit.wikimedia.org/r/228277 (owner: 10Paladox) [09:53:25] paladox: landing it [09:53:28] sorry I am busy [09:53:33] Ok thanks. [09:54:25] (03Merged) 10jenkins-bot: Update MathSearch tests [integration/config] - 10https://gerrit.wikimedia.org/r/228277 (owner: 10Paladox) [09:59:13] paladox: I have deployed the CI change for MathSearch [09:59:22] hashar: Thanks. [10:26:37] 10Browser-Tests, 10Continuous-Integration-Config: Define a CI entry point for Ruby code - https://phabricator.wikimedia.org/T104024#1724681 (10hashar) [10:26:39] 10Continuous-Integration-Config, 5Patch-For-Review: Move Bundler Jenkins jobs to Nodepool instances - https://phabricator.wikimedia.org/T114860#1724680 (10hashar) [10:26:53] 10Continuous-Integration-Config, 5Patch-For-Review: Move Bundler Jenkins jobs to Nodepool instances - https://phabricator.wikimedia.org/T114860#1708023 (10hashar) Requires {T104024} [10:36:07] (03CR) 10Hashar: "Related patch on mediawiki/vagrant https://gerrit.wikimedia.org/r/#/c/246194/" (031 comment) [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [10:36:30] zeljkof: found it with https://gerrit.wikimedia.org/r/#/c/246194/ [10:36:35] zeljkof: let me: bundle install && rake test [10:36:38] it is magic! [10:36:42] I am out for lunch [10:45:43] 10Beta-Cluster-Infrastructure, 10RESTBase, 6Services: Use an account for tests of RESTBase API at beta-cluster - https://phabricator.wikimedia.org/T115369#1724695 (10Pchelolo) The tests should be run locally too, so setting up encrypted auth doesn't seem to worth it. Here's a PR that switches all tests to u... [10:56:52] 10Beta-Cluster-Infrastructure, 10RESTBase, 6Services: Use an account for tests of RESTBase API at beta-cluster - https://phabricator.wikimedia.org/T115369#1724714 (10mobrovac) a:3Pchelolo [10:56:54] 10Beta-Cluster-Infrastructure, 10RESTBase, 6Services: Use an account for tests of RESTBase API at beta-cluster - https://phabricator.wikimedia.org/T115369#1724715 (10Pchelolo) The PR was merged, now we will not create these pages on every test run, so the ticket can be closed. [10:57:01] 10Beta-Cluster-Infrastructure, 10RESTBase, 6Services: Use an account for tests of RESTBase API at beta-cluster - https://phabricator.wikimedia.org/T115369#1724716 (10Pchelolo) 5Open>3Resolved [12:18:00] zeljkof: have you looked at my bundler/rake patch yet? [12:24:54] (03PS2) 10Hashar: [ConfirmEdit] Update jenkin tests [integration/config] - 10https://gerrit.wikimedia.org/r/246102 (owner: 10Paladox) [12:25:19] hashar: sorry, out to lunch [12:27:00] (03CR) 10Hashar: [C: 032] [ConfirmEdit] Update jenkin tests [integration/config] - 10https://gerrit.wikimedia.org/r/246102 (owner: 10Paladox) [12:28:17] (03CR) 10Paladox: "Thanks." [integration/config] - 10https://gerrit.wikimedia.org/r/246102 (owner: 10Paladox) [12:30:21] (03Merged) 10jenkins-bot: [ConfirmEdit] Update jenkin tests [integration/config] - 10https://gerrit.wikimedia.org/r/246102 (owner: 10Paladox) [12:32:24] (03CR) 10Hashar: [C: 04-1] "Lets migrate it to npm and run jsonlint/banana checker :-}" [integration/config] - 10https://gerrit.wikimedia.org/r/246172 (owner: 10Paladox) [12:33:10] 10Continuous-Integration-Config, 5MW-1.26-release, 5Patch-For-Review: MediaWiki 1.26 bundled repo should be state of the art - https://phabricator.wikimedia.org/T115392#1724884 (10Paladox) [12:33:32] 10Continuous-Integration-Config, 5MW-1.26-release, 5Patch-For-Review: MediaWiki 1.26 bundled repo should be state of the art - https://phabricator.wikimedia.org/T115392#1723180 (10Paladox) [12:34:21] 10Continuous-Integration-Config, 5MW-1.26-release, 5Patch-For-Review: MediaWiki 1.26 bundled repo should be state of the art - https://phabricator.wikimedia.org/T115392#1723180 (10Paladox) [12:35:56] 10Continuous-Integration-Config, 5MW-1.26-release, 5Patch-For-Review: MediaWiki 1.26 bundled repo should be state of the art - https://phabricator.wikimedia.org/T115392#1724899 (10hashar) @Paladox that is for `REL1_26`. We will need to do some backports. [12:36:32] 10Continuous-Integration-Config, 5MW-1.26-release, 5Patch-For-Review: MediaWiki 1.26 bundled repo should be state of the art - https://phabricator.wikimedia.org/T115392#1724901 (10Paladox) Just realised sorry. [12:47:00] PROBLEM - Free space - all mounts on integration-slave-trusty-1013 is CRITICAL: CRITICAL: integration.integration-slave-trusty-1013.diskspace._mnt.byte_percentfree (<20.00%) [12:53:35] greg-g: hey, i noticed that https://www.mediawiki.org/wiki/MediaWiki_1.27/Roadmap is missing any data about weeks after the current one. presumably they're going to follow the same schedule? [12:53:38] Project UploadWizard-api-commons.wikimedia.org build #2141: 04FAILURE in 37 sec: https://integration.wikimedia.org/ci/job/UploadWizard-api-commons.wikimedia.org/2141/ [12:54:19] rebulding it [12:54:53] ERROR: Could not connect to SMTP host: polonium.wikimedia.org, port: 25 [12:54:54] grr [12:55:30] heh, the tests user got blocked. [13:02:30] !log Adjusting Jenkins SMTP server from polonium.wikimedia.org to mx1001.wikimedia.org [13:02:33] Logged the message at https://wikitech.wikimedia.org/wiki/Release_Engineering/SAL, Master [13:07:00] RECOVERY - Free space - all mounts on integration-slave-trusty-1013 is OK: OK: All targets OK [13:08:17] WTF [13:10:45] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1724975 (10hashar) 3NEW [13:12:15] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1724986 (10hashar) From [[ https://commons.wikimedia.org/w/index.php?title=Special... [13:13:52] hashar, you ran a test bot against a production wiki and are surprised it got blocked? [13:14:43] I doubt that block is going to get lifted. [13:15:00] Krenair: it is not a test bot :D [13:15:14] it is a WMF monitoring system to ensure UploadWizard is properly running [13:15:16] but yeah [13:15:19] still a bot :-} [13:15:22] hashar: looking now [13:20:05] zeljkof: I can't attend the call later, to much to do for fundraising atm. But jzerebecki will join to talk about stuff :-) [13:20:33] * CFisch_WMDE lunch now [13:20:56] CFisch_WMDE: ok, thanks for letting me know, see you next week [13:21:29] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1725011 (10hashar) Per IRC discussion on #wikimedia-commons I sent a notice to the... [13:23:50] (03PS1) 10Paladox: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246216 [13:24:48] paladox: for the integration/config patches, it would be rather nice to have the commit summary to point to the related change in the source repo. That makes it easier to navigate and see the patch introducing the entry point :-} [13:24:50] (03PS2) 10Paladox: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246172 [13:25:10] Yippee, build fixed! [13:25:11] Project UploadWizard-api-commons.wikimedia.org build #2145: 09FIXED in 12 sec: https://integration.wikimedia.org/ci/job/UploadWizard-api-commons.wikimedia.org/2145/ [13:25:26] hashar: Ok i will include the changes i do in the repos in commit msg. [13:26:02] (03PS3) 10Paladox: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246172 [13:26:13] (03PS4) 10Zfilipin: Run `bundle exec rake test` on Nodepool Jessie instances. [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) [13:26:38] (03CR) 10Zfilipin: Run `bundle exec rake test` on Nodepool Jessie instances. (031 comment) [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [13:26:44] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1725023 (10hashar) @Steinsplitter kindly unblocked the bot. From the admin board:... [13:26:51] (03Abandoned) 10Paladox: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246216 (owner: 10Paladox) [13:27:21] (03Restored) 10Paladox: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246216 (owner: 10Paladox) [13:27:25] hashar: I have updated the patch with your comments: https://gerrit.wikimedia.org/r/#/c/245875/ [13:27:36] looking at https://gerrit.wikimedia.org/r/#/c/246194/ [13:27:37] (03Abandoned) 10Paladox: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246216 (owner: 10Paladox) [13:30:49] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1725038 (10hashar) 3NEW [13:31:30] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1725048 (10hashar) 5Open>3Resolved a:3hashar Following the unblock, the job... [13:33:11] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1725064 (10Steinsplitter) >rename the account to [[User:Selenium user (WMF QA bot)]] I can rename the account... [13:37:55] hashar: https://gerrit.wikimedia.org/r/#/c/246194/ looks good to me [13:38:02] let's see what vagrant people say [13:42:20] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1725090 (10Steinsplitter) [13:48:35] zeljkof: so I guess we can adjust the jjb template [13:48:41] and go with: [13:48:42] bundler install [13:48:47] rake2.1 test [13:48:53] already done :) [13:49:05] only I made it "bundle exec rake2.1 test" [13:49:14] not going to work [13:49:21] unless we add 'rake' to Gemfile [13:49:21] do you explicitly want it done without "bundle exec"? [13:49:26] I see [13:49:30] and why not do that? [13:49:37] to not have to add rake to Gemfile? [13:49:42] yes [13:49:46] and it seems easier to me to just use 'rake' [13:49:54] instead of remembering to use bundle exec rake [13:50:16] I would prefer bundle exec [13:50:20] it is the way one would have to do it on their dev machine [13:50:51] not with the patch that loads bundler environment in the Rakefile :D [13:50:52] and we can pick the version of rake then, not that it matters now, but it might (not likely, but still) [13:51:10] sorry, did not get that [13:51:25] (03PS1) 10Paladox: Add experimental tests to mw-checks and mw-checks-test [integration/config] - 10https://gerrit.wikimedia.org/r/246222 [13:51:28] the trick is the top of https://gerrit.wikimedia.org/r/#/c/246194/2/Rakefile [13:51:32] require 'bundler/setup' [13:51:50] that change the internal gem lookup path to point to the vendor dir that bundle install has setup [13:51:53] (or something like that) [13:52:34] hashar: Could you review https://gerrit.wikimedia.org/r/#/c/246222/ please. It helps us move it to more advanced tests for the extensions. [13:52:51] zeljkof: and apparently bundle exec rake spec works as well [13:55:13] paladox: that is a lot of jobs :D [13:56:03] hashar: It is the same tests as in extension-unittests-generic but this would allow us to move to those tests. [13:57:14] paladox: you can drop mediawiki-extensions-hhvm , that is to test gating extensions together, it has no purpose until the extension pass tests [13:57:24] I would drop the zend and composer variant as well [13:57:37] I think it is sufficient to have mwext-testextension-hhvm [13:57:38] which is faster [13:58:27] paladox: and replace mediawiki-extensions-qunit with the generic one mwext-qunit [13:58:32] I am commenting on the patch [13:58:37] hashar: Ok i will upload the new patch now. [13:59:35] (03PS2) 10Paladox: Add experimental tests to mw-checks and mw-checks-test [integration/config] - 10https://gerrit.wikimedia.org/r/246222 [14:00:08] (03CR) 10Hashar: Add experimental tests to mw-checks and mw-checks-test (032 comments) [integration/config] - 10https://gerrit.wikimedia.org/r/246222 (owner: 10Paladox) [14:00:22] paladox: great [14:00:38] hashar: Thanks. :) [14:00:56] (03CR) 10Hashar: [C: 032] "Yup that will speed up migration of extensions :-}" [integration/config] - 10https://gerrit.wikimedia.org/r/246222 (owner: 10Paladox) [14:00:57] deploying! [14:01:04] hashar: Thanks. [14:01:37] I am pretty sure we can script / automatize that [14:02:23] i.e. look at all extensions, add dummy package.json / composer.json / .gitignore etc. Assert both are passing and if so send the change for review [14:02:35] then adjust the CI configuration in bulk to use npm / php-composer-test [14:02:35] (03Merged) 10jenkins-bot: Add experimental tests to mw-checks and mw-checks-test [integration/config] - 10https://gerrit.wikimedia.org/r/246222 (owner: 10Paladox) [14:03:07] deployed [14:21:57] Yippee, build fixed! [14:21:58] Project beta-update-databases-eqiad build #3635: 09FIXED in 1 min 57 sec: https://integration.wikimedia.org/ci/job/beta-update-databases-eqiad/3635/ [14:22:37] (03CR) 10Paladox: "Thanks." [integration/config] - 10https://gerrit.wikimedia.org/r/246222 (owner: 10Paladox) [14:23:09] (03PS5) 10Hashar: Run `bundle exec rake test` on Nodepool Jessie instances. [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [14:23:18] (03PS6) 10Hashar: Run `bundle exec rake test` on Nodepool Jessie instances. [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [14:25:00] (03PS7) 10Hashar: Run `bundle exec rake test` on Nodepool Jessie instances. [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [14:25:56] (03CR) 10Hashar: "I have added rake-jessie to mediawiki/vagrant experimental pipeline." [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [14:27:23] Project browsertests-Echo-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce build #656: 04FAILURE in 1 min 23 sec: https://integration.wikimedia.org/ci/job/browsertests-Echo-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce/656/ [14:27:38] (03CR) 10Hashar: [C: 032] Run `bundle exec rake test` on Nodepool Jessie instances. [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [14:29:29] (03Merged) 10jenkins-bot: Run `bundle exec rake test` on Nodepool Jessie instances. [integration/config] - 10https://gerrit.wikimedia.org/r/245875 (https://phabricator.wikimedia.org/T114860) (owner: 10Zfilipin) [14:30:32] zeljkof: running at https://integration.wikimedia.org/ci/job/rake-jessie/1/consoleFull [14:30:51] and something tries to sudo .......... [14:33:52] The short version is this: if you always use "bundle install --path", sudo is [14:33:52] not called. If you don't give "--path", bundler installs gems into the same [14:33:53] location as "gem install", which is not writable by normal users on Debian [14:33:53] systems (and therefore sudo is called). [14:35:20] need to use bundle install --path [14:35:25] with path pointing to some place grr [14:36:13] (03PS1) 10Zfilipin: WIP Use Cucumber 2.x [selenium] - 10https://gerrit.wikimedia.org/r/246235 (https://phabricator.wikimedia.org/T110510) [14:41:07] https://integration.wikimedia.org/ci/job/rake-jessie/2/consoleFull [14:43:29] (03PS1) 10Hashar: Instruct bundler to install under vendor/bundle [integration/config] - 10https://gerrit.wikimedia.org/r/246239 (https://phabricator.wikimedia.org/T114860) [14:44:54] (03CR) 10Hashar: [V: 031] "I have updated the job:" [integration/config] - 10https://gerrit.wikimedia.org/r/246239 (https://phabricator.wikimedia.org/T114860) (owner: 10Hashar) [14:45:16] zeljkof: https://gerrit.wikimedia.org/r/#/c/246239/1/jjb/ruby-jobs.yaml,unified :-} [14:49:00] hashar: sorry, in a meeting with jzerebecki [14:49:25] Project browsertests-Wikidata-WikidataTests-linux-firefox-sauce-T110510 build #1: 04FAILURE in 16 sec: https://integration.wikimedia.org/ci/job/browsertests-Wikidata-WikidataTests-linux-firefox-sauce-T110510/1/ [14:54:43] PROBLEM - Puppet staleness on deployment-restbase01 is CRITICAL: CRITICAL: 100.00% of data above the critical threshold [43200.0] [14:56:51] (03Abandoned) 10Zfilipin: WIP Use Cucumber 2.x [selenium] - 10https://gerrit.wikimedia.org/r/246235 (https://phabricator.wikimedia.org/T110510) (owner: 10Zfilipin) [14:58:51] (03PS2) 10Hashar: Instruct bundler to install under vendor/bundle [integration/config] - 10https://gerrit.wikimedia.org/r/246239 (https://phabricator.wikimedia.org/T114860) [15:00:23] (03CR) 10Hashar: [C: 032 V: 031] "Made the macro to install in the parent path, that is to prevent gems to be added to the source tree (under vendor/bundler, the default fo" [integration/config] - 10https://gerrit.wikimedia.org/r/246239 (https://phabricator.wikimedia.org/T114860) (owner: 10Hashar) [15:02:05] (03Merged) 10jenkins-bot: Instruct bundler to install under vendor/bundle [integration/config] - 10https://gerrit.wikimedia.org/r/246239 (https://phabricator.wikimedia.org/T114860) (owner: 10Hashar) [15:03:38] MatmaRex: correct [15:05:53] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725281 (10zeljkofilipin) https://integration.wikimedia.org/ci/job/browsertests-Wikidata-WikidataTests-linux-firefox-sauce-T11... [15:06:19] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725282 (10zeljkofilipin) Updating to Cucumber 2.x could solve the problem. [15:06:29] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725283 (10zeljkofilipin) a:5dduvall>3zeljkofilipin [15:28:03] (03PS1) 10Mattflaschen: Add CirrusSearch and Elastica as Flow dependencies, sort [integration/config] - 10https://gerrit.wikimedia.org/r/246248 [15:38:28] hashar: Could you merge https://gerrit.wikimedia.org/r/#/c/242934/ please since it passes now. [15:38:35] 10Browser-Tests, 10reading-web-sprint-58-The-Sixth-Sense: QA: Page diff test failing on integration.wikimedia.org but not on merge - https://phabricator.wikimedia.org/T115486#1725428 (10Jdlrobson) 3NEW [15:42:31] paladox: I guess the Echo team will do [15:42:41] hashar: Ok. [15:48:04] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725461 (10JanZerebecki) The following lead us to think the problem might be fixed in cucumber 2.x: https://github.com/cucumbe... [15:55:16] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725503 (10Tobi_WMDE_SW) I'm wondering why it broke so suddenly. The scenarios that broke were not new at all. Were there a re... [15:56:25] (03PS1) 10Hashar: Introduce rake as an entry point [selenium] - 10https://gerrit.wikimedia.org/r/246253 [15:56:29] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725504 (10Tobi_WMDE_SW) @zeljofilipin thx a lot for digging into this. If Cucumber 2.x really solves this issue, can we just... [16:00:51] 10Browser-Tests, 10Continuous-Integration-Config, 5Patch-For-Review: Define a CI entry point for Ruby code - https://phabricator.wikimedia.org/T104024#1725528 (10hashar) We gave it a try on mediawiki/vagrant and that seems to play well. I proposed a similar change to mediawiki/selenium https://gerrit.wikime... [16:08:39] (03CR) 10Zfilipin: [C: 031] Introduce rake as an entry point [selenium] - 10https://gerrit.wikimedia.org/r/246253 (owner: 10Hashar) [16:13:19] (03PS1) 10Anomie: Add php-session-serializer test and publisher jobs [integration/config] - 10https://gerrit.wikimedia.org/r/246256 [16:14:27] 10Browser-Tests, 10Wikidata, 5Patch-For-Review, 3Wikidata-Sprint-2015-10-13: [Bug] fix negative argument (ArgumentError) in browsertests - https://phabricator.wikimedia.org/T110510#1725577 (10JanZerebecki) As a workaround I remove the pretty formatter from https://integration.wikimedia.org/ci/view/BrowserT... [16:16:59] (03CR) 10Krinkle: [C: 032] Add php-session-serializer test and publisher jobs [integration/config] - 10https://gerrit.wikimedia.org/r/246256 (owner: 10Anomie) [16:17:43] 10MediaWiki-Releasing, 6Release-Engineering-Team, 7Security-Other: Add patch support to make-release - https://phabricator.wikimedia.org/T115493#1725590 (10demon) 3NEW a:3demon [16:18:10] Happy fun times, started hacking on that yesterday... [16:18:15] csteipp: ^^ :) [16:18:16] (03Merged) 10jenkins-bot: Add php-session-serializer test and publisher jobs [integration/config] - 10https://gerrit.wikimedia.org/r/246256 (owner: 10Anomie) [16:20:28] 10Beta-Cluster-Infrastructure: Give selenium users botflags at beta-cluster to allow them to hide their edits at the recent-changes - https://phabricator.wikimedia.org/T115370#1725605 (10Luke081515) a:3Luke081515 [16:22:54] !log Reloading Zuul to deploy https://gerrit.wikimedia.org/r/246256 [16:22:57] Logged the message at https://wikitech.wikimedia.org/wiki/Release_Engineering/SAL, Master [16:26:40] (03PS1) 10Chad: Remove `make-branches` [tools/release] - 10https://gerrit.wikimedia.org/r/246258 [16:27:04] Someone got a second for a trivial review? ^ [16:28:09] 10Beta-Cluster-Infrastructure: Give selenium users botflags at beta-cluster to allow them to hide their edits at the recent-changes - https://phabricator.wikimedia.org/T115370#1725633 (10Luke081515) If there is no appeal against it, I will set the flags on saturday. [16:32:53] (03CR) 10Chad: [C: 032] Remove `make-branches` [tools/release] - 10https://gerrit.wikimedia.org/r/246258 (owner: 10Chad) [16:33:15] (03Merged) 10jenkins-bot: Remove `make-branches` [tools/release] - 10https://gerrit.wikimedia.org/r/246258 (owner: 10Chad) [16:34:17] (03PS1) 10Chad: svn -> git in make-release readme [tools/release] - 10https://gerrit.wikimedia.org/r/246262 [16:34:27] 10Beta-Cluster-Infrastructure: Give selenium users botflags at beta-cluster to allow them to hide their edits at the recent-changes - https://phabricator.wikimedia.org/T115370#1725646 (10Luke081515) p:5Triage>3High [16:34:37] (03CR) 10Chad: [C: 032] svn -> git in make-release readme [tools/release] - 10https://gerrit.wikimedia.org/r/246262 (owner: 10Chad) [16:35:06] (03Merged) 10jenkins-bot: svn -> git in make-release readme [tools/release] - 10https://gerrit.wikimedia.org/r/246262 (owner: 10Chad) [16:36:07] (03PS1) 10Chad: Make make-extension-branches support skins [tools/release] - 10https://gerrit.wikimedia.org/r/246264 [16:37:30] (03PS2) 10Chad: Make make-extension-branches support skins [tools/release] - 10https://gerrit.wikimedia.org/r/246264 [16:39:15] marxarelli: hi! We went some crazy rake entry point on mediawiki/vagrant https://gerrit.wikimedia.org/r/#/c/246245/ :D [16:39:37] seems to be working as intended, the 'rake-jessie' job runs on nodepool and can be triggered via the experimental pipeline [16:39:59] similar thing for mediawiki/selenium , though it does not have the experimental stanza yet https://gerrit.wikimedia.org/r/#/c/246253/ [16:44:42] (03PS1) 10Hashar: Add experimental rake-jessie to a bunch of repos [integration/config] - 10https://gerrit.wikimedia.org/r/246268 (https://phabricator.wikimedia.org/T114860) [16:45:11] sleeeeep [16:45:12] err [16:45:19] commute time.. [16:55:27] 10MediaWiki-Codesniffer, 10MediaWiki-General-or-Unknown, 5MW-1.27-release-notes: Make MediaWiki core pass mediawiki-codesniffer - https://phabricator.wikimedia.org/T102609#1725700 (10Umherirrender) [16:55:30] 10MediaWiki-Codesniffer, 10MediaWiki-General-or-Unknown, 5Patch-For-Review: Fix issues identified by SpaceBeforeSingleLineComments sniff - https://phabricator.wikimedia.org/T112261#1725699 (10Umherirrender) 5Open>3Resolved [16:55:56] 6Release-Engineering-Team: Survey on needs related to Beta Cluster/Staging - https://phabricator.wikimedia.org/T115497#1725702 (10greg) 3NEW [16:57:12] 10MediaWiki-Codesniffer, 5Patch-For-Review: Add sniff to avoid if/else/while/foreach without curly braces - https://phabricator.wikimedia.org/T113863#1725712 (10Umherirrender) The sniff is in the repo, but it seems it is not used in mediawiki/core Needs this a update of the codesniffer version in the dependen... [17:07:08] 10MediaWiki-Codesniffer: Bump mw code sniffer to version 0.4.1 - https://phabricator.wikimedia.org/T115498#1725739 (10Paladox) 3NEW [17:07:46] 10MediaWiki-Codesniffer: Bump mw code sniffer to version 0.4.1 - https://phabricator.wikimedia.org/T115498#1725746 (10Paladox) [17:11:11] 10Browser-Tests, 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3Wikidata-Sprint-2015-10-13: failed Description with a too long value - https://phabricator.wikimedia.org/T115499#1725756 (10JanZerebecki) 3NEW [17:12:05] 10Browser-Tests, 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3Wikidata-Sprint-2015-10-13: failed Description with a too long value - https://phabricator.wikimedia.org/T115499#1725756 (10JanZerebecki) The saucelabs link is from the previous test. [17:12:24] 10MediaWiki-Codesniffer, 10MediaWiki-General-or-Unknown, 5Patch-For-Review: Make MediaWiki core pass mediawiki-codesniffer - https://phabricator.wikimedia.org/T102609#1725766 (10Umherirrender) 5Open>3Resolved [17:12:55] 10MediaWiki-Codesniffer, 10MediaWiki-General-or-Unknown, 5Patch-For-Review: Make MediaWiki core pass mediawiki-codesniffer - https://phabricator.wikimedia.org/T102609#1369137 (10Umherirrender) All issues in the current configuration are fixed and that means phpcs is passing mediawiki/core at the moment. [17:15:31] 10Browser-Tests: browsertest failure reports don't show the failing tests saucelabs link, but a different one - https://phabricator.wikimedia.org/T115500#1725777 (10JanZerebecki) 3NEW [17:16:36] 10Browser-Tests, 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 3Wikidata-Sprint-2015-10-13: failed Description with a too long value - https://phabricator.wikimedia.org/T115499#1725756 (10JanZerebecki) Reported {T115500}. Do I have access to the actual failing sauce lab test? [17:29:02] greg-g_ the release command may help to get the main nick [17:29:04] available [17:29:27] Luke081515: thanks :) [17:29:32] I always forget [17:29:59] no problem ;) [17:30:12] yay [17:43:48] bd808: Is there a way to massage logstash data into a pretty graph in grafana? [17:44:29] not directly, no [17:44:46] Hmm [17:44:54] there is some graphite data that we create for MW stuff [17:45:38] what sort of data do you want to graph? [17:46:09] I was wanting to track the fatalmonitor numbers (oom, exception, dberror, hhvm) over time. [17:46:26] ah. we have some of that actually [17:46:37] * bd808 looks for the dashboard [17:47:16] ostriches: https://grafana.wikimedia.org/dashboard/db/bd808-test?panelId=8&fullscreen [17:47:30] that does not have hhvm or apache2 [17:48:04] but we do have per channel and severity counts for MW log channels [17:48:26] we could add hhvm and apache2 with some logstash config [17:48:53] That's mostly what I want! [17:49:33] What you've got, plus hhvm and apache2, then I'm set. [17:51:10] (03PS1) 10Catrope: Stop running mwext-qunit job for Flow [integration/config] - 10https://gerrit.wikimedia.org/r/246276 (https://phabricator.wikimedia.org/T115373) [17:54:04] ostriches: to start collecting rates like that for hhvm and apache2 we would need to add some puppet config similar to https://github.com/wikimedia/operations-puppet/blob/production/manifests/role/logstash.pp#L142-L148 [17:54:39] it should be pretty easy; wanna open a ticket to remind me to work on it? [17:54:52] (or jdfi) [17:59:43] (03CR) 10Legoktm: [C: 032] "I'm still a bit concerned about why this is failing." [integration/config] - 10https://gerrit.wikimedia.org/r/246276 (https://phabricator.wikimedia.org/T115373) (owner: 10Catrope) [18:00:43] A database query error has occurred. This may indicate a bug in the software. [18:00:45] (03Merged) 10jenkins-bot: Stop running mwext-qunit job for Flow [integration/config] - 10https://gerrit.wikimedia.org/r/246276 (https://phabricator.wikimedia.org/T115373) (owner: 10Catrope) [18:00:52] https://de.wikipedia.org/wiki/Spezial:Zuf%C3%A4llige_Seite <-- random page at dewiki [18:02:18] !log deploying https://gerrit.wikimedia.org/r/246276 [18:02:21] Logged the message at https://wikitech.wikimedia.org/wiki/Release_Engineering/SAL, Master [18:30:48] Project browsertests-CentralNotice-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce build #470: 04FAILURE in 47 sec: https://integration.wikimedia.org/ci/job/browsertests-CentralNotice-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce/470/ [19:21:45] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726073 (10Multichill) Ah, the mysterious operator is Hashar! Another case where t... [19:28:42] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1726090 (10Multichill) Some thoughts * https://commons.wikimedia.org/w/index.php?title=File:Test-image-rosa-m... [19:35:26] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726114 (10hashar) @Multichill Yup the job has been created a while back to ensure... [19:42:29] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726140 (10hashar) From QA list https://lists.wikimedia.org/pipermail/qa/2015-Octo... [19:54:23] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726163 (10Jdforrester-WMF) Why isn't it running on the Beta Cluster? [19:56:41] hashar: Please could you merge this https://gerrit.wikimedia.org/r/#/c/246170/ please. Ive tested it here https://gerrit.wikimedia.org/r/#/c/245931/ and passes the tests i am adding. [20:06:03] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1726188 (10hashar) [20:12:54] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1726211 (10hashar) The smoke test suite has been made as part of {T60555}. UploadWizard was then unstable ei... [20:29:00] (03PS4) 10Hashar: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246172 (owner: 10Paladox) [20:29:07] (03CR) 10Hashar: [C: 032] [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246172 (owner: 10Paladox) [20:30:04] (03CR) 10Paladox: "Thanks. :)" [integration/config] - 10https://gerrit.wikimedia.org/r/246172 (owner: 10Paladox) [20:30:08] (03Merged) 10jenkins-bot: [Youtube] Update jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246172 (owner: 10Paladox) [20:31:03] and I am sleeping [20:31:04] * hashar waves [20:33:01] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726287 (10hashar) > Why isn't it running on the Beta Cluster? There is one on th... [20:36:53] (03CR) 10EBernhardson: [C: 031] Add CirrusSearch and Elastica as Flow dependencies, sort [integration/config] - 10https://gerrit.wikimedia.org/r/246248 (owner: 10Mattflaschen) [20:43:25] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726331 (10Jdforrester-WMF) >>! In T115465#1726287, @hashar wrote: >> Why isn't it... [21:09:43] 6Release-Engineering-Team, 3releng-201516-q2: QR action item: Phabricator - https://phabricator.wikimedia.org/T115176#1726445 (10greg) p:5High>3Normal [21:14:01] ostriches: you want to do the cherry-picking honors? [21:15:58] 10Continuous-Integration-Infrastructure, 6Commons, 6Multimedia, 10UploadWizard: UploadWizard API smoke tests falling because Selenium_user has been blocked on commons.wikimedia.org - https://phabricator.wikimedia.org/T115465#1726472 (10Legoktm) >>! In T115465#1726331, @Jdforrester-WMF wrote: > Making chang... [21:17:04] bd808: Doing [21:18:12] We had to turn off collection of log events from the "warning" channel in MW because it had insane volume (221G in less than 24 hours). The main errors it is recording are here -- https://phabricator.wikimedia.org/P2200 [21:18:30] The big offender was "Deprecated PHP entry point used for ContentTranslation extension. Please use wfLoadExtension instead, see https://www.mediawiki.org/wiki/Extension_registration for more details. [Called from include in /srv/mediawiki/php-1.27.0-wmf.2/extensions/ContentTranslation/ContentTranslation.php at line 11]" [21:18:33] bd808: running puppetz on logstash2 [21:19:02] bd808: True story, that warning is what made me go ahead with lego's patch. [21:19:12] heh [21:19:30] Ok, applied on logstash2. [21:19:47] ok. now to figure out where the datas go [21:20:02] Yippee, build fixed! [21:20:02] Project browsertests-QuickSurveys-en.m.wikipedia.beta.wmflabs.org-linux-chrome-sauce build #34: 09FIXED in 4 min 1 sec: https://integration.wikimedia.org/ci/job/browsertests-QuickSurveys-en.m.wikipedia.beta.wmflabs.org-linux-chrome-sauce/34/ [21:21:29] All I see in logstash.rate.* is mediawiki.* [21:21:52] data is headed towards labmon1001.eqiad.wmnet [21:22:11] I'm looking at graphite.wmflabs.org [21:22:28] nothing in https://logstash-beta.wmflabs.org/#/dashboard/elasticsearch/hhvm for the last 5 minutes [21:22:40] Gotta wait for stats to happen, heh [21:22:41] so we needs the data there first [21:23:01] Gosh, why's beta gotta be reliable when you want it to be not? [21:23:32] we should put Gergo's "make errors happen" extension on there :) [21:25:22] ostriches: lets let is stew for a while. There should be something to see by tomorrow morning [21:25:34] * ostriches nods [21:25:36] sounds good [21:27:05] 10Continuous-Integration-Config, 6Commons, 6Multimedia, 10UploadWizard: Adjust UploadWizard API test suite to match commons.wikimedia.org policy for bots - https://phabricator.wikimedia.org/T115469#1726512 (10greg) >>! In T115469#1726211, @hashar wrote: >> Do you have more bots like this running around? >... [22:03:09] (03PS1) 10Paladox: [Flow] Update Jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246426 [22:03:43] (03PS2) 10Paladox: [Flow] Update Jenkins tests [integration/config] - 10https://gerrit.wikimedia.org/r/246426 [22:27:59] 10Continuous-Integration-Infrastructure, 5Patch-For-Review: Flow QUnit job fails with timeouts more often than not - https://phabricator.wikimedia.org/T115373#1726728 (10Catrope) 5Open>3Resolved a:3Catrope [22:57:02] Yippee, build fixed! [22:57:02] Project browsertests-Flow-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce build #830: 09FIXED in 46 min: https://integration.wikimedia.org/ci/job/browsertests-Flow-en.wikipedia.beta.wmflabs.org-linux-firefox-sauce/830/ [22:58:53] 10Continuous-Integration-Infrastructure, 10Wikimedia-Fundraising-CiviCRM: CI for Civi: provision and run tests under Jenkins/Zuul - https://phabricator.wikimedia.org/T86103#1726846 (10awight) 5stalled>3Resolved [23:20:16] (03PS1) 10Legoktm: doc: Add php-session-serializer library [integration/docroot] - 10https://gerrit.wikimedia.org/r/246436 [23:20:51] (03CR) 10Legoktm: [C: 032] doc: Add php-session-serializer library [integration/docroot] - 10https://gerrit.wikimedia.org/r/246436 (owner: 10Legoktm) [23:21:05] (03Merged) 10jenkins-bot: doc: Add php-session-serializer library [integration/docroot] - 10https://gerrit.wikimedia.org/r/246436 (owner: 10Legoktm)