<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ci.git/lib/gitlab_ci_yaml_processor.rb, branch test-coverage</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ci.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/'/>
<entry>
<title>Make the YAML validation more stricter</title>
<updated>2015-08-19T16:43:56+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-08-18T16:58:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=568715fce6d1c022bce065f44a1886f966cc4a95'/>
<id>568715fce6d1c022bce065f44a1886f966cc4a95</id>
<content type='text'>
- deny all globals that are not hases and doesn't contain script, the script is required now
- verify that script is either string or array of an strings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- deny all globals that are not hases and doesn't contain script, the script is required now
- verify that script is either string or array of an strings
</pre>
</div>
</content>
</entry>
<entry>
<title>Added support for YAML-defined variables</title>
<updated>2015-08-05T10:16:24+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-08-04T18:35:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=9cce83b1290826ad19acffb6e095a0e8b963c05f'/>
<id>9cce83b1290826ad19acffb6e095a0e8b963c05f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename all occurrences of type to stage</title>
<updated>2015-08-03T14:25:16+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-08-03T14:25:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=79aeaec98b55ef68bae9bf0a5cb61fbe4e649279'/>
<id>79aeaec98b55ef68bae9bf0a5cb61fbe4e649279</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Soft rename type to stage</title>
<updated>2015-08-03T14:13:53+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-08-03T14:13:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=09e2d0dd59d74c2ae58150d8a3b633b9a6a45986'/>
<id>09e2d0dd59d74c2ae58150d8a3b633b9a6a45986</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make YAML validation stricter</title>
<updated>2015-08-03T11:21:26+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-08-02T21:38:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=1b9154257207de7b0f41469882cdd6bfccdeebc4'/>
<id>1b9154257207de7b0f41469882cdd6bfccdeebc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Satisfy rubocop</title>
<updated>2015-07-10T14:10:22+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-10T14:10:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=62f3558ddfb60c1a6229ad0d7cc8892ff49dd5c2'/>
<id>62f3558ddfb60c1a6229ad0d7cc8892ff49dd5c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to specify flexible list of types in yaml</title>
<updated>2015-07-10T14:04:35+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-10T12:56:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=efdf54f25a83462a750cacd4ea7919c7d38e67d1'/>
<id>efdf54f25a83462a750cacd4ea7919c7d38e67d1</id>
<content type='text'>
```
types:
- test
- deploy
- notify

rspec:
  script: "rspec"

rubocop:
  script: "rubocop"

staging:
  type: deploy
  script: "echo deploy"
  only:
  - master

production:
  type: deploy
  script: "echo production"
  only:
  - tags

dockerhub:
  type: notify
  script: "curl http://docker/hub/web/hook"

downstream:
  type: notify
  script: "curl http://build/downstream/jobs"
```

This will trigger two test jobs in parallel, when finished it will trigged either staging or production, when finished it will trigger dockerhub and downstream in parallel.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
types:
- test
- deploy
- notify

rspec:
  script: "rspec"

rubocop:
  script: "rubocop"

staging:
  type: deploy
  script: "echo deploy"
  only:
  - master

production:
  type: deploy
  script: "echo production"
  only:
  - tags

dockerhub:
  type: notify
  script: "curl http://docker/hub/web/hook"

downstream:
  type: notify
  script: "curl http://build/downstream/jobs"
```

This will trigger two test jobs in parallel, when finished it will trigged either staging or production, when finished it will trigger dockerhub and downstream in parallel.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to defined per-job allow_failure parameter</title>
<updated>2015-07-08T10:39:03+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-08T10:38:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=638a5f492541fa3f658b4fd3090dda624e4cf4c9'/>
<id>638a5f492541fa3f658b4fd3090dda624e4cf4c9</id>
<content type='text'>
It allows to ignore status of specific job when computed for commit
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It allows to ignore status of specific job when computed for commit
</pre>
</div>
</content>
</entry>
<entry>
<title>Added support for image and services</title>
<updated>2015-07-06T11:04:36+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-06-30T10:57:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=073c2a556e145d511e976b92f364b03aa4f3dd7f'/>
<id>073c2a556e145d511e976b92f364b03aa4f3dd7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enhance YAML validation</title>
<updated>2015-06-30T10:48:48+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-06-30T09:59:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=1a733c84e76a1fdfc919c9ea779300eded1d1551'/>
<id>1a733c84e76a1fdfc919c9ea779300eded1d1551</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
