Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
a0afeefd
Commit
a0afeefd
authored
Apr 17, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CHANGELOG and documentation
parent
cc57d610
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
CHANGELOG
CHANGELOG
+1
-0
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+10
-0
No files found.
CHANGELOG
View file @
a0afeefd
...
...
@@ -21,6 +21,7 @@ v 8.7.0 (unreleased)
- Make /profile/keys/new redirect to /profile/keys for back-compat. !3717
- Preserve time notes/comments have been updated at when moving issue
- Make HTTP(s) label consistent on clone bar (Stan Hu)
- Add support for `after_script`, requires Runner 1.2 (Kamil Trzciński)
- Expose label description in API (Mariusz Jachimowicz)
- API: Ability to update a group (Robert Schilling)
- API: Ability to move issues (Robert Schilling)
...
...
doc/ci/yaml/README.md
View file @
a0afeefd
...
...
@@ -15,6 +15,7 @@ If you want a quick introduction to GitLab CI, follow our
-
[
.gitlab-ci.yml
](
#gitlab-ci-yml
)
-
[
image and services
](
#image-and-services
)
-
[
before_script
](
#before_script
)
-
[
after_script
](
#after_script
)
-
[
stages
](
#stages
)
-
[
types
](
#types
)
-
[
variables
](
#variables
)
...
...
@@ -80,6 +81,9 @@ services:
before_script
:
-
bundle install
after_script
:
-
rm secrets
stages
:
-
build
-
test
...
...
@@ -104,6 +108,7 @@ There are a few reserved `keywords` that **cannot** be used as job names:
| stages | no | Define build stages |
| types | no | Alias for
`stages`
|
| before_script | no | Define commands that run before each job's script |
| after_script | no | Define commands that run after each job's script |
| variables | no | Define build variables |
| cache | no | Define list of files that should be cached between subsequent runs |
...
...
@@ -118,6 +123,11 @@ used for time of the build. The configuration of this feature is covered in
`before_script`
is used to define the command that should be run before all
builds, including deploy builds. This can be an array or a multi-line string.
### after_script
`after_script`
is used to define the command that will be run after for all
builds. This has to be an array or a multi-line string.
### stages
`stages`
is used to define build stages that can be used by jobs.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment