<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/qa/Gemfile.lock, branch docs-patch-77</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Update qa/Dockerfile to be built from the project root context</title>
<updated>2019-08-19T07:44:53+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-08-06T12:50:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b601cfcfa707235d7f5eed43bfbe0d3956adff40'/>
<id>b601cfcfa707235d7f5eed43bfbe0d3956adff40</id>
<content type='text'>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump nokogiri to 1.10.4</title>
<updated>2019-08-12T00:25:15+00:00</updated>
<author>
<name>Thong Kuah</name>
<email>tkuah@gitlab.com</email>
</author>
<published>2019-08-12T00:18:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2d58eba11134d2f3013d2ab45d93ae0581893be7'/>
<id>2d58eba11134d2f3013d2ab45d93ae0581893be7</id>
<content type='text'>
This pulls in fix for CVE-2019-5477, where usage of
Nokogiri::CSS::Tokenizer#load_file leads to potential command injection.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This pulls in fix for CVE-2019-5477, where usage of
Nokogiri::CSS::Tokenizer#load_file leads to potential command injection.
</pre>
</div>
</content>
</entry>
<entry>
<title>Generate parallel spec reports</title>
<updated>2019-07-17T14:12:56+00:00</updated>
<author>
<name>Desiree Chevalier</name>
<email>dchevalier@gitlab.com</email>
</author>
<published>2019-06-07T12:46:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a1bee1a09d529007c4ff11ab55d355b51f352ed8'/>
<id>a1bee1a09d529007c4ff11ab55d355b51f352ed8</id>
<content type='text'>
Creates reports for parallel specs and collates them into a single
HTML report and displays results on the merge request.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Creates reports for parallel specs and collates them into a single
HTML report and displays results on the merge request.
</pre>
</div>
</content>
</entry>
<entry>
<title>Run tests in parallel via parallel_tests</title>
<updated>2019-07-09T15:40:46+00:00</updated>
<author>
<name>Mark Lapierre</name>
<email>mlapierre@gitlab.com</email>
</author>
<published>2019-07-09T15:40:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7d97102f72d6e85546cd317a96655ca3b20d34d2'/>
<id>7d97102f72d6e85546cd317a96655ca3b20d34d2</id>
<content type='text'>
Uses the parallel_tests gem to execute tests in multiple processes
simultaneously on the same machine.

Adds the `--parallel` CLI option that instructs the QA framework
to use the parallel_tests executable.

Tests need access to global state contained in `Runtime::Scenario`
so when `--parallel` is invoked `Runtime::Scenario` is serialized
to an environment variable, which is passed to parallel_tests,
and then deserialized in `spec_helper`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Uses the parallel_tests gem to execute tests in multiple processes
simultaneously on the same machine.

Adds the `--parallel` CLI option that instructs the QA framework
to use the parallel_tests executable.

Tests need access to global state contained in `Runtime::Scenario`
so when `--parallel` is invoked `Runtime::Scenario` is serialized
to an environment variable, which is passed to parallel_tests,
and then deserialized in `spec_helper`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Generate knapsack report for review-qa-all</title>
<updated>2019-06-03T10:37:43+00:00</updated>
<author>
<name>Mark Lapierre</name>
<email>mlapierre@gitlab.com</email>
</author>
<published>2019-06-03T10:37:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3922c6da841871f010dcffb3fcbfffc48d49bdab'/>
<id>3922c6da841871f010dcffb3fcbfffc48d49bdab</id>
<content type='text'>
Add knapsack qa report and use it to run tests in parallel

Use the RSpec runner with knapsack

The way the Knapsack runner uses exec to start rspec seems
incompatible with the way we expect it to work. Plus, it requires
specifying KNAPSACK_TEST_DIR.

Instead, we use knapsacks AllocatorBuilder to select the spec
files to run, and then start rspec as normal, via
RSpec::Core::Runner.run

This also means we can incorporate tags.

Let the job run automatically

Include KNAPSACK_TEST_FILE_PATTERN in vars

Check all defined knapsack env vars before requiring knapsack
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add knapsack qa report and use it to run tests in parallel

Use the RSpec runner with knapsack

The way the Knapsack runner uses exec to start rspec seems
incompatible with the way we expect it to work. Plus, it requires
specifying KNAPSACK_TEST_DIR.

Instead, we use knapsacks AllocatorBuilder to select the spec
files to run, and then start rspec as normal, via
RSpec::Core::Runner.run

This also means we can incorporate tags.

Let the job run automatically

Include KNAPSACK_TEST_FILE_PATTERN in vars

Check all defined knapsack env vars before requiring knapsack
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump Nokogiri to 1.10.3</title>
<updated>2019-04-22T20:59:15+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-04-22T20:59:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9d7bb9d8c2631a9bd781fa7793fbcfc4fdbf71b8'/>
<id>9d7bb9d8c2631a9bd781fa7793fbcfc4fdbf71b8</id>
<content type='text'>
This pulls in a fix for libxslt that addresses CVE-2019-11068:
https://github.com/sparklemotion/nokogiri/releases
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This pulls in a fix for libxslt that addresses CVE-2019-11068:
https://github.com/sparklemotion/nokogiri/releases
</pre>
</div>
</content>
</entry>
<entry>
<title>Also update nokogiri for QA</title>
<updated>2019-04-12T13:03:08+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2019-04-12T13:03:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d568c8df180d7cb45f53598eb1111061ecd1c556'/>
<id>d568c8df180d7cb45f53598eb1111061ecd1c556</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Script to generate Perf Testdata</title>
<updated>2019-03-05T08:39:04+00:00</updated>
<author>
<name>Ramya Authappan</name>
<email>rauthappan@gitlab.com</email>
</author>
<published>2019-03-05T08:39:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=31469e1835fcf1f24d35538b60e6e9b09cf5ed7b'/>
<id>31469e1835fcf1f24d35538b60e6e9b09cf5ed7b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Retry failed tests with rspec-retry</title>
<updated>2019-02-19T12:12:07+00:00</updated>
<author>
<name>Sanad Liaquat</name>
<email>sliaquat@gitlab.com</email>
</author>
<published>2019-02-19T12:12:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d54cb37d29a9f02e210a5e5b4ada6169fc0cf9fb'/>
<id>d54cb37d29a9f02e210a5e5b4ada6169fc0cf9fb</id>
<content type='text'>
Does not retry if tagged :quarantine. Also adds unit tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Does not retry if tagged :quarantine. Also adds unit tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add script to delete all subgroups within the specified group</title>
<updated>2019-01-24T04:32:56+00:00</updated>
<author>
<name>Sanad Liaquat</name>
<email>sliaquat@gitlab.com</email>
</author>
<published>2019-01-23T10:42:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=150716d6c1f0d8b031e9cb4f5643601025c04937'/>
<id>150716d6c1f0d8b031e9cb4f5643601025c04937</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
