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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
0255a858
Commit
0255a858
authored
Mar 07, 2016
by
Achilleas Pipinellis
Committed by
James Edwards-Jones
Jan 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the default ruby:2.1 image
parent
aaebb216
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
doc/pages/README.md
doc/pages/README.md
+17
-9
No files found.
doc/pages/README.md
View file @
0255a858
...
@@ -224,15 +224,17 @@ specific to your static generator.
...
@@ -224,15 +224,17 @@ specific to your static generator.
The example below, uses [Jekyll] to build the static site:
The example below, uses [Jekyll] to build the static site:
```
yaml
```
yaml
pages
:
image
:
ruby:2.1
# the script will run in Ruby 2.1 using the Docker image ruby:2.1
images
:
jekyll/jekyll:latest
pages
:
# the build job must be named pages
script
:
script
:
-
jekyll build -d public/
-
gem install jekyll
# we install jekyll
-
jekyll build -d public/
# we tell jekyll to build the site for us
artifacts
:
artifacts
:
paths
:
paths
:
-
public
-
public
# this is where the site will live and the Runner uploads it in GitLab
only
:
only
:
-
master
-
master
# this script is only affecting the master branch
```
```
Here, we used the Docker executor and in the first line we specified the base
Here, we used the Docker executor and in the first line we specified the base
...
@@ -241,7 +243,11 @@ image against which our builds will run.
...
@@ -241,7 +243,11 @@ image against which our builds will run.
You have to make sure that the generated static files are ultimately placed
You have to make sure that the generated static files are ultimately placed
under the
`public`
directory, that's why in the
`script`
section we run the
under the
`public`
directory, that's why in the
`script`
section we run the
`jekyll`
command that builds the website and puts all content in the
`public/`
`jekyll`
command that builds the website and puts all content in the
`public/`
directory.
directory. Depending on the static generator of your choice, this command will
differ. Search in the documentation of the static generator you will use if
there is an option to explicitly set the output directory. If there is not
such an option, you can always add one more line under
`script`
to rename the
resulting directory in
`public/`
.
We then tell the Runner to treat the
`public/`
directory as
`artifacts`
and
We then tell the Runner to treat the
`public/`
directory as
`artifacts`
and
upload it to GitLab.
upload it to GitLab.
...
@@ -251,8 +257,8 @@ upload it to GitLab.
...
@@ -251,8 +257,8 @@ upload it to GitLab.
See the
[
jekyll example project
][
pages-jekyll
]
to better understand how this
See the
[
jekyll example project
][
pages-jekyll
]
to better understand how this
works.
works.
For a list of Pages projects, see
[
example projects
](
#example-projects
)
to get
For a list of Pages projects, see
the
[
example projects
](
#example-projects
)
to
you started.
get
you started.
#### How to set up GitLab Pages in a repository where there's also actual code
#### How to set up GitLab Pages in a repository where there's also actual code
...
@@ -279,9 +285,11 @@ Below is a copy of `.gitlab-ci.yml` where the most significant line is the last
...
@@ -279,9 +285,11 @@ Below is a copy of `.gitlab-ci.yml` where the most significant line is the last
one, specifying to execute everything in the
`pages`
branch:
one, specifying to execute everything in the
`pages`
branch:
```
```
image: ruby:2.1
pages:
pages:
images: jekyll/jekyll:latest
script:
script:
- gem install jekyll
- jekyll build -d public/
- jekyll build -d public/
artifacts:
artifacts:
paths:
paths:
...
...
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