<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/services/ci, branch frozen_string_lib_2</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>Merge branch 'enable-dag-support-by-default' into 'master'</title>
<updated>2019-08-16T08:10:45+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-16T08:10:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4418907ccefc64ff26c318f9535a609353e3c3be'/>
<id>4418907ccefc64ff26c318f9535a609353e3c3be</id>
<content type='text'>
Enable DAG support by default

Closes #65457

See merge request gitlab-org/gitlab-ce!31814</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable DAG support by default

Closes #65457

See merge request gitlab-org/gitlab-ce!31814</pre>
</div>
</content>
</entry>
<entry>
<title>Enable DAG support by default</title>
<updated>2019-08-14T13:59:44+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-14T13:59:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=72541807b34348e7fa7e7d1ef7d119376382d8af'/>
<id>72541807b34348e7fa7e7d1ef7d119376382d8af</id>
<content type='text'>
This toggles the ci_dag_support flag to be on by default.
This relies on ci_dag_limit_needs to be present to reduce
amount of inter-dependencies between jobs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This toggles the ci_dag_support flag to be on by default.
This relies on ci_dag_limit_needs to be present to reduce
amount of inter-dependencies between jobs
</pre>
</div>
</content>
</entry>
<entry>
<title>Optimise DAG processing</title>
<updated>2019-08-14T09:34:44+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-13T13:14:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=cee2f86d5724fcb073a8abdfbaf83869a8de85f1'/>
<id>cee2f86d5724fcb073a8abdfbaf83869a8de85f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'prefer-to-use-process-pipeline-worker' into 'master'</title>
<updated>2019-08-05T09:29:45+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2019-08-05T09:29:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d126df55fde21d2dc8eb9d5f72841a9792bca105'/>
<id>d126df55fde21d2dc8eb9d5f72841a9792bca105</id>
<content type='text'>
Extend PipelineProcessWorker to accept a list of builds

See merge request gitlab-org/gitlab-ce!31425</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Extend PipelineProcessWorker to accept a list of builds

See merge request gitlab-org/gitlab-ce!31425</pre>
</div>
</content>
</entry>
<entry>
<title>Extend PipelineProcessWorker to accept a list of builds</title>
<updated>2019-08-02T18:31:17+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-02T17:31:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=593490e5ac6ec5a92fdcc9b82eebbb455ea6cf48'/>
<id>593490e5ac6ec5a92fdcc9b82eebbb455ea6cf48</id>
<content type='text'>
This changes used worker from `BuildProcessWorker`
to `PipelineProcessWorker` to make pipeline
processing much simpler. We process `pipeline_id`,
based on some triggers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes used worker from `BuildProcessWorker`
to `PipelineProcessWorker` to make pipeline
processing much simpler. We process `pipeline_id`,
based on some triggers.
</pre>
</div>
</content>
</entry>
<entry>
<title>Properly process `needs:` with `when:`</title>
<updated>2019-08-02T17:14:59+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-02T16:12:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a2bbf7b8c197922067d1266249197e5f60e0fd7f'/>
<id>a2bbf7b8c197922067d1266249197e5f60e0fd7f</id>
<content type='text'>
Currently, some of the jobs with `needs:`
would be processed in stages, it means
that `when:` for such jobs would not be
respected.

This changes the behavior to have a separate
execution paths for jobs with `needs:`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, some of the jobs with `needs:`
would be processed in stages, it means
that `when:` for such jobs would not be
respected.

This changes the behavior to have a separate
execution paths for jobs with `needs:`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for DAG</title>
<updated>2019-08-01T14:26:49+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-01T14:26:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e7ee84aad4237eaa16f2aba75b4d2c7860625c9d'/>
<id>e7ee84aad4237eaa16f2aba75b4d2c7860625c9d</id>
<content type='text'>
This implements the support for `needs:` keyword
as part of GitLab CI. That makes some of the jobs
to be run out of order.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This implements the support for `needs:` keyword
as part of GitLab CI. That makes some of the jobs
to be run out of order.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Job specific variables</title>
<updated>2019-07-29T07:43:10+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2019-07-29T07:43:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a5aa40c5fe93dc3daba8a578f4c09c4e443fcbec'/>
<id>a5aa40c5fe93dc3daba8a578f4c09c4e443fcbec</id>
<content type='text'>
Adds Job specific variables to facilitate specifying variables when
running manual jobs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds Job specific variables to facilitate specifying variables when
running manual jobs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer `flat_map` over `map` + `flatten`</title>
<updated>2019-07-26T10:44:13+00:00</updated>
<author>
<name>Peter Leitzen</name>
<email>pleitzen@gitlab.com</email>
</author>
<published>2019-07-26T10:44:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8136fac26c8f470720ff90d152b93abf50f5084d'/>
<id>8136fac26c8f470720ff90d152b93abf50f5084d</id>
<content type='text'>
Convert several occurrences of `map` + `flatten` to
`flat_map` where applicable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert several occurrences of `map` + `flatten` to
`flat_map` where applicable.
</pre>
</div>
</content>
</entry>
<entry>
<title>Validate the existence of archived traces before removing live trace</title>
<updated>2019-07-23T10:26:08+00:00</updated>
<author>
<name>Shinya Maeda</name>
<email>shinya@gitlab.com</email>
</author>
<published>2019-07-18T09:22:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c2e0e689f355555db231ac6db40ab1b654c90233'/>
<id>c2e0e689f355555db231ac6db40ab1b654c90233</id>
<content type='text'>
Often live traces are removed even though the archived trace
doesn't exist. This commit checkes the existence strictly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Often live traces are removed even though the archived trace
doesn't exist. This commit checkes the existence strictly.
</pre>
</div>
</content>
</entry>
</feed>
