<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/scripts/insert-rspec-profiling-data, branch master</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Add latest changes from gitlab-org/gitlab@master</title>
<updated>2022-01-25T18:11:55+00:00</updated>
<author>
<name>GitLab Bot</name>
<email>gitlab-bot@gitlab.com</email>
</author>
<published>2022-01-25T18:11:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2b2d833ab3e78f8c9f626af950a16d43fc38c9f8'/>
<id>2b2d833ab3e78f8c9f626af950a16d43fc38c9f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add latest changes from gitlab-org/gitlab@master</title>
<updated>2021-12-22T06:13:39+00:00</updated>
<author>
<name>GitLab Bot</name>
<email>gitlab-bot@gitlab.com</email>
</author>
<published>2021-12-22T06:13:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=589ee0e419426e5b740c61b25a3fcfabd1d4c6a6'/>
<id>589ee0e419426e5b740c61b25a3fcfabd1d4c6a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add latest changes from gitlab-org/gitlab@master</title>
<updated>2021-02-12T12:09:02+00:00</updated>
<author>
<name>GitLab Bot</name>
<email>gitlab-bot@gitlab.com</email>
</author>
<published>2021-02-12T12:09:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=49d26b2348f2eb9e345eb1f66214678f42f15dd3'/>
<id>49d26b2348f2eb9e345eb1f66214678f42f15dd3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add latest changes from gitlab-org/gitlab@master</title>
<updated>2019-12-22T06:07:52+00:00</updated>
<author>
<name>GitLab Bot</name>
<email>gitlab-bot@gitlab.com</email>
</author>
<published>2019-12-22T06:07:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=62fcb9ffa9e40db6f34e7dd0d36804d73ef01435'/>
<id>62fcb9ffa9e40db6f34e7dd0d36804d73ef01435</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unneeded monkey-patch</title>
<updated>2019-07-25T04:21:38+00:00</updated>
<author>
<name>Heinrich Lee Yu</name>
<email>heinrich@gitlab.com</email>
</author>
<published>2019-07-17T03:51:22+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2b3d00a77822eaf2e622dd0b1baf85ebea2b1ee4'/>
<id>2b3d00a77822eaf2e622dd0b1baf85ebea2b1ee4</id>
<content type='text'>
Changes all calls to data_source_exists? to table_exists?
since that is the intent of these calls
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes all calls to data_source_exists? to table_exists?
since that is the intent of these calls
</pre>
</div>
</content>
</entry>
<entry>
<title>Document ApplicationRecord / pluck_primary_key</title>
<updated>2019-03-29T20:54:06+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-03-29T11:23:05+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=98a5976b787fad0797bc5e3231c48ab3f400bce6'/>
<id>98a5976b787fad0797bc5e3231c48ab3f400bce6</id>
<content type='text'>
We also enable the rubocop that makes it mandatory
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We also enable the rubocop that makes it mandatory
</pre>
</div>
</content>
</entry>
<entry>
<title>Batch insert CI rspec_profiling data</title>
<updated>2019-03-12T09:51:37+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-03-12T09:51:37+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f11030173b909c64aa23ce7482af8fcee8554be9'/>
<id>f11030173b909c64aa23ce7482af8fcee8554be9</id>
<content type='text'>
Instead of inserting a row after each example to an external database,
we save the CI profiling reports into the `rspec_profiling` directory
and insert the data in the update-tests-metadata CI stage.  This should
make each spec run faster and also reduce the number of PostgreSQL
connections needed by concurrent CI builds.

`scripts/insert-rspec-profiling-data` also inserts one file at a time
via the PostgreSQL COPY command for faster inserts. The one side effect
is that the `created_at` and `updated_at` timestamps aren't available
since they aren't generated in the CSV.

Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/10154
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of inserting a row after each example to an external database,
we save the CI profiling reports into the `rspec_profiling` directory
and insert the data in the update-tests-metadata CI stage.  This should
make each spec run faster and also reduce the number of PostgreSQL
connections needed by concurrent CI builds.

`scripts/insert-rspec-profiling-data` also inserts one file at a time
via the PostgreSQL COPY command for faster inserts. The one side effect
is that the `created_at` and `updated_at` timestamps aren't available
since they aren't generated in the CSV.

Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/10154
</pre>
</div>
</content>
</entry>
</feed>
