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
567f6a7b
Commit
567f6a7b
authored
Jun 09, 2016
by
Z.J. van de Weg
Committed by
Alfredo Sumaran
Jun 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add first templates for gitlab-ci dropdown
parent
27bf7ae5
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
256 additions
and
0 deletions
+256
-0
vendor/gitlab-ci-yml/LICENSE
vendor/gitlab-ci-yml/LICENSE
+21
-0
vendor/gitlab-ci-yml/Pages/brunch.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/brunch.gitlab-ci.yml
+16
-0
vendor/gitlab-ci-yml/Pages/doxygen.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/doxygen.gitlab-ci.yml
+13
-0
vendor/gitlab-ci-yml/Pages/harp.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/harp.gitlab-ci.yml
+16
-0
vendor/gitlab-ci-yml/Pages/hexo.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/hexo.gitlab-ci.yml
+25
-0
vendor/gitlab-ci-yml/Pages/html.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/html.gitlab-ci.yml
+12
-0
vendor/gitlab-ci-yml/Pages/hugo.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/hugo.gitlab-ci.yml
+11
-0
vendor/gitlab-ci-yml/Pages/hyde.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/hyde.gitlab-ci.yml
+25
-0
vendor/gitlab-ci-yml/Pages/jekyll.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/jekyll.gitlab-ci.yml
+24
-0
vendor/gitlab-ci-yml/Pages/lektor.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/lektor.gitlab-ci.yml
+12
-0
vendor/gitlab-ci-yml/Pages/metalsmith.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/metalsmith.gitlab-ci.yml
+17
-0
vendor/gitlab-ci-yml/Pages/middleman.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/middleman.gitlab-ci.yml
+27
-0
vendor/gitlab-ci-yml/Pages/nanoc.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/nanoc.gitlab-ci.yml
+12
-0
vendor/gitlab-ci-yml/Pages/octopress.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/octopress.gitlab-ci.yml
+15
-0
vendor/gitlab-ci-yml/Pages/pelican.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/pelican.gitlab-ci.yml
+10
-0
No files found.
vendor/gitlab-ci-yml/LICENSE
0 → 100644
View file @
567f6a7b
The MIT License (MIT)
Copyright (c) 2016 GitLab.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
vendor/gitlab-ci-yml/Pages/brunch.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/brunch
image
:
node:4.2.2
pages
:
cache
:
paths
:
-
node_modules/
script
:
-
npm install -g brunch
-
brunch build --production
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/doxygen.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/doxygen
image
:
alpine
pages
:
script
:
-
apk update && apk add doxygen
-
doxygen doxygen/Doxyfile
-
mv doxygen/documentation/html/ public/
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/harp.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/harp
image
:
node:4.2.2
pages
:
cache
:
paths
:
-
node_modules
script
:
-
npm install -g harp
-
harp compile ./ public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/hexo.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/hexo
image
:
python:2.7
cache
:
paths
:
-
vendor/
test
:
stage
:
test
script
:
-
pip install hyde
-
hyde gen
except
:
-
master
pages
:
stage
:
deploy
script
:
-
pip install hyde
-
hyde gen -d public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/html.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/plain-html
pages
:
stage
:
deploy
script
:
-
mkdir .public
-
cp -r * .public
-
mv .public public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/hugo.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/hugo
image
:
publysher/hugo
pages
:
script
:
-
hugo
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/hyde.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/hyde
image
:
python:2.7
cache
:
paths
:
-
vendor/
test
:
stage
:
test
script
:
-
pip install hyde
-
hyde gen
except
:
-
master
pages
:
stage
:
deploy
script
:
-
pip install hyde
-
hyde gen -d public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/jekyll.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/jekyll
image
:
ruby:2.3
test
:
stage
:
test
script
:
-
gem install jekyll
-
jekyll build -d test
artifacts
:
paths
:
-
test
except
:
-
master
pages
:
stage
:
deploy
script
:
-
gem install jekyll
-
jekyll build -d public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/lektor.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/hyde
image
:
python:2.7
pages
:
script
:
-
pip install lektor
-
lektor build --output-path public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/metalsmith.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/metalsmith
image
:
node:4.2.2
pages
:
cache
:
paths
:
-
node_modules/
script
:
-
npm install -g metalsmith
-
npm install
-
make build
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/middleman.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/middleman
image
:
ruby:2.3
cache
:
paths
:
-
vendor
test
:
script
:
-
apt-get update -yqqq
-
apt-get install -y nodejs
-
bundle install --path vendor
-
bundle exec middleman build
except
:
-
master
pages
:
script
:
-
apt-get update -yqqq
-
apt-get install -y nodejs
-
bundle install --path vendor
-
bundle exec middleman build
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/nanoc.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/nanoc
image
:
ruby:2.3
pages
:
script
:
-
bundle install -j4
-
nanoc
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/octopress.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/octopress
image
:
ruby:2.3
pages
:
script
:
-
apt-get update -qq && apt-get install -qq nodejs
-
bundle install -j4
-
bundle exec rake generate
-
mv public .public
-
mv .public/octopress public
artifacts
:
paths
:
-
public
only
:
-
master
vendor/gitlab-ci-yml/Pages/pelican.gitlab-ci.yml
0 → 100644
View file @
567f6a7b
# Full project: https://gitlab.com/pages/pelican
image
:
python:2.7-alpine
pages
:
script
:
-
pip install -r requirements.txt
-
pelican -s publishconf.py
artifacts
:
paths
:
-
public/
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