<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/scripts, branch instance-statistics-ext</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>[Review Apps] Don't exit when dependable job fails</title>
<updated>2019-01-17T17:56:41+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-01-17T17:53:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a4f73241708a777117637d7671584bd255638768'/>
<id>a4f73241708a777117637d7671584bd255638768</id>
<content type='text'>
The function that retrieves the dependable job is pretty basic and
retrieves the first job found with the matching name, but this job can
be failed but then successfully retried. In that case, we would exit the
depending job even though the dependable job actually succeeded (the
second time). Let's simplify things, be optimistic and continue with the
depending job even if the dependable job fails.

That reverts to the original behavior.

Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The function that retrieves the dependable job is pretty basic and
retrieves the first job found with the matching name, but this job can
be failed but then successfully retried. In that case, we would exit the
depending job even though the dependable job actually succeeded (the
second time). Let's simplify things, be optimistic and continue with the
depending job even if the dependable job fails.

That reverts to the original behavior.

Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '55323-review-apps-use-2-replicas-for-the-tiller-deploy-deployment' into 'master'</title>
<updated>2019-01-10T12:36:06+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-01-10T12:36:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2064565abc2f83d5ceea6e4a15fd3eeb09d4ca02'/>
<id>2064565abc2f83d5ceea6e4a15fd3eeb09d4ca02</id>
<content type='text'>
[Review Apps] Use 2 replicas for the `tiller-deploy` Deployment

Closes #55323

See merge request gitlab-org/gitlab-ce!23806</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[Review Apps] Use 2 replicas for the `tiller-deploy` Deployment

Closes #55323

See merge request gitlab-org/gitlab-ce!23806</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'exit-error-if-job-waited-fails' into 'master'</title>
<updated>2019-01-07T10:36:53+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-01-07T10:36:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=25d98e9d819c83d4bfe2b70b85e8d08b5ceb4dd7'/>
<id>25d98e9d819c83d4bfe2b70b85e8d08b5ceb4dd7</id>
<content type='text'>
Exit `wait_for_job_to_be_done` as error if the job fails

See merge request gitlab-org/gitlab-ce!23997</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Exit `wait_for_job_to_be_done` as error if the job fails

See merge request gitlab-org/gitlab-ce!23997</pre>
</div>
</content>
</entry>
<entry>
<title>Stop using deprecated argument to `gem`</title>
<updated>2018-12-31T09:30:23+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2018-12-31T09:30:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1854f142e201af4c6640b98b33b1e4992795b7bc'/>
<id>1854f142e201af4c6640b98b33b1e4992795b7bc</id>
<content type='text'>
`--no-rdoc` and `--no-ri` have been deprecated since RubyGems 2.0:
https://github.com/rubygems/rubygems/blob/v2.0.0/History.txt#L43

They were finally removed in a recent release:
https://github.com/rubygems/rubygems/pull/2354
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`--no-rdoc` and `--no-ri` have been deprecated since RubyGems 2.0:
https://github.com/rubygems/rubygems/blob/v2.0.0/History.txt#L43

They were finally removed in a recent release:
https://github.com/rubygems/rubygems/pull/2354
</pre>
</div>
</content>
</entry>
<entry>
<title>Exit as error if job fails</title>
<updated>2018-12-21T18:30:52+00:00</updated>
<author>
<name>Mark Lapierre</name>
<email>mlapierre@gitlab.com</email>
</author>
<published>2018-12-21T18:30:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=38a10e387021024e35d1985aebe3d50591d9a6c9'/>
<id>38a10e387021024e35d1985aebe3d50591d9a6c9</id>
<content type='text'>
If a script is waiting for a job to be done and that job fails,
exit with an error status so that the script doesn't continue
with a prerequisite in an invalid state.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a script is waiting for a job to be done and that job fails,
exit with an error status so that the script doesn't continue
with a prerequisite in an invalid state.</pre>
</div>
</content>
</entry>
<entry>
<title>Use 2 replicas for the  Deployment</title>
<updated>2018-12-19T10:23:43+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2018-12-13T15:45:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ebf73a19ce08afda8357c0997401f2ca3e4c4dca'/>
<id>ebf73a19ce08afda8357c0997401f2ca3e4c4dca</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>Specify the 'sync' policy for the external-dns deployments</title>
<updated>2018-12-18T16:49:53+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2018-12-18T16:49:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a76ce8b46b6e37d55b879571c7b50742824600de'/>
<id>a76ce8b46b6e37d55b879571c7b50742824600de</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>Run gitlab:assets:compile on qa jobs</title>
<updated>2018-12-17T20:30:52+00:00</updated>
<author>
<name>Mark Lapierre</name>
<email>mlapierre@gitlab.com</email>
</author>
<published>2018-12-17T18:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0f751f6f17d1f457276f15632b31203f658ec4c9'/>
<id>0f751f6f17d1f457276f15632b31203f658ec4c9</id>
<content type='text'>
Optionally compiling assets when needed for qa jobs proved
unworkable so instead we fall back on compiling them for
all qa jobs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Optionally compiling assets when needed for qa jobs proved
unworkable so instead we fall back on compiling them for
all qa jobs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rs-prepare-build-parity' into 'master'</title>
<updated>2018-12-17T10:02:15+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2018-12-17T10:02:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=35c69ea2187af037428c3b25d735f1a359833d96'/>
<id>35c69ea2187af037428c3b25d735f1a359833d96</id>
<content type='text'>
CE-EE parity for prepare_build script

See merge request gitlab-org/gitlab-ce!23819</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CE-EE parity for prepare_build script

See merge request gitlab-org/gitlab-ce!23819</pre>
</div>
</content>
</entry>
<entry>
<title>Remove rails 4 support in CI, Gemfiles, bin/ and config/</title>
<updated>2018-12-14T18:36:22+00:00</updated>
<author>
<name>Jasper Maes</name>
<email>jaspermaes.jm@gmail.com</email>
</author>
<published>2018-12-07T18:15:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=44fef4fe4cb9d4f30f129ff5a548395bc924c8fe'/>
<id>44fef4fe4cb9d4f30f129ff5a548395bc924c8fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
