<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ci.git/spec/support, branch fix-variable-saving-error</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>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>Fix specs</title>
<updated>2015-08-05T10:07:12+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-08-05T10:07:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=1779c1d49f36fe255adcc12764b70561ecb5c351'/>
<id>1779c1d49f36fe255adcc12764b70561ecb5c351</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>Merge branch 'builds-path' into 'master'</title>
<updated>2015-07-09T14:05:11+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-09T14:05:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=a14db6d3c063724a3ee76ba9a733ba09a4fdea73'/>
<id>a14db6d3c063724a3ee76ba9a733ba09a4fdea73</id>
<content type='text'>
Make configurable builds_path in application.yml

We have a new option in `application.yml`:
```
gitlab_ci:
  builds_path: builds/
```

/cc @marin @vsizov

See merge request !193
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make configurable builds_path in application.yml

We have a new option in `application.yml`:
```
gitlab_ci:
  builds_path: builds/
```

/cc @marin @vsizov

See merge request !193
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'allow-per-job-failure' into 'master'</title>
<updated>2015-07-08T14:49:25+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-08T14:49:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=5a71f9b9afe70621569148638f1b54abd4f689b7'/>
<id>5a71f9b9afe70621569148638f1b54abd4f689b7</id>
<content type='text'>
Allow to define per-job allow_failure parameter

It allows to ignore status of specific build when computing status for commit

YAML syntax:
```yaml
rspec:
  script: aa
  allow_failure: true
```

![Screen_Shot_2015-07-08_at_11.28.53](https://gitlab.com/gitlab-org/gitlab-ci/uploads/0af264f026cac18921aef339bcf41fe2/Screen_Shot_2015-07-08_at_11.28.53.png)

/cc @vsizov @sytses

See merge request !191
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow to define per-job allow_failure parameter

It allows to ignore status of specific build when computing status for commit

YAML syntax:
```yaml
rspec:
  script: aa
  allow_failure: true
```

![Screen_Shot_2015-07-08_at_11.28.53](https://gitlab.com/gitlab-org/gitlab-ci/uploads/0af264f026cac18921aef339bcf41fe2/Screen_Shot_2015-07-08_at_11.28.53.png)

/cc @vsizov @sytses

See merge request !191
</pre>
</div>
</content>
</entry>
<entry>
<title>Make configurable builds_path in application.yml</title>
<updated>2015-07-08T14:45:13+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-08T14:45:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=9436dca4ed72e0e5bb36f5444ddeb5de9b346c03'/>
<id>9436dca4ed72e0e5bb36f5444ddeb5de9b346c03</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 'trace_in_file' into 'master'</title>
<updated>2015-07-08T14:12:34+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-07-08T14:12:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=00b6536f4d155ec41b8a8434d992b6b207f07bb5'/>
<id>00b6536f4d155ec41b8a8434d992b6b207f07bb5</id>
<content type='text'>
Build trace in file

https://dev.gitlab.org/gitlab/gitlab-ci/issues/272

See merge request !167
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Build trace in file

https://dev.gitlab.org/gitlab/gitlab-ci/issues/272

See merge request !167
</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>Get rid of private message usage</title>
<updated>2015-07-02T10:29:50+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-07-02T10:29:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ci.git/commit/?id=7015ef1b60895ffa2a46b4a41f8f02018f74614c'/>
<id>7015ef1b60895ffa2a46b4a41f8f02018f74614c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
