BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
413484f2
Commit
413484f2
authored
Jul 06, 2016
by
Robert Speicher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remove-lowercase-gitlab-ci-yml' into 'master'
Remove duplicate templates that are lowercase See merge request !5114
parents
22780c4a
bb380126
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
3 additions
and
238 deletions
+3
-238
gitlab_ci_yml_dropdown_spec.rb
spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb
+3
-3
brunch.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/brunch.gitlab-ci.yml
+0
-16
doxygen.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/doxygen.gitlab-ci.yml
+0
-13
harp.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/harp.gitlab-ci.yml
+0
-16
hexo.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/hexo.gitlab-ci.yml
+0
-25
html.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/html.gitlab-ci.yml
+0
-12
hugo.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/hugo.gitlab-ci.yml
+0
-11
hyde.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/hyde.gitlab-ci.yml
+0
-25
jekyll.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/jekyll.gitlab-ci.yml
+0
-24
lektor.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/lektor.gitlab-ci.yml
+0
-12
metalsmith.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/metalsmith.gitlab-ci.yml
+0
-17
middleman.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/middleman.gitlab-ci.yml
+0
-27
nanoc.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/nanoc.gitlab-ci.yml
+0
-12
octopress.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/octopress.gitlab-ci.yml
+0
-15
pelican.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/pelican.gitlab-ci.yml
+0
-10
No files found.
spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb
View file @
413484f2
...
...
@@ -19,12 +19,12 @@ feature 'User wants to add a .gitlab-ci.yml file', feature: true do
find
(
'.js-gitlab-ci-yml-selector'
).
click
wait_for_ajax
within
'.gitlab-ci-yml-selector'
do
find
(
'.dropdown-input-field'
).
set
(
'
j
ekyll'
)
find
(
'.dropdown-content li'
,
text:
'
j
ekyll'
).
click
find
(
'.dropdown-input-field'
).
set
(
'
J
ekyll'
)
find
(
'.dropdown-content li'
,
text:
'
J
ekyll'
).
click
end
wait_for_ajax
expect
(
page
).
to
have_css
(
'.gitlab-ci-yml-selector .dropdown-toggle-text'
,
text:
'
j
ekyll'
)
expect
(
page
).
to
have_css
(
'.gitlab-ci-yml-selector .dropdown-toggle-text'
,
text:
'
J
ekyll'
)
expect
(
page
).
to
have_content
(
'This file is a template, and might need editing before it works on your project'
)
expect
(
page
).
to
have_content
(
'jekyll build -d test'
)
end
...
...
vendor/gitlab-ci-yml/Pages/brunch.gitlab-ci.yml
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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
deleted
100644 → 0
View file @
22780c4a
# 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