mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Remove duplicate templates that are lowercase
Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
-16
@@ -1,16 +0,0 @@
|
||||
# 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
|
||||
@@ -1,13 +0,0 @@
|
||||
# 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
|
||||
-16
@@ -1,16 +0,0 @@
|
||||
# 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
|
||||
-25
@@ -1,25 +0,0 @@
|
||||
# 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
|
||||
-12
@@ -1,12 +0,0 @@
|
||||
# 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
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
# Full project: https://gitlab.com/pages/hugo
|
||||
image: publysher/hugo
|
||||
|
||||
pages:
|
||||
script:
|
||||
- hugo
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
||||
-25
@@ -1,25 +0,0 @@
|
||||
# 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
|
||||
-24
@@ -1,24 +0,0 @@
|
||||
# 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
|
||||
-12
@@ -1,12 +0,0 @@
|
||||
# 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
|
||||
@@ -1,17 +0,0 @@
|
||||
# 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
|
||||
@@ -1,27 +0,0 @@
|
||||
# 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
|
||||
-12
@@ -1,12 +0,0 @@
|
||||
# Full project: https://gitlab.com/pages/nanoc
|
||||
image: ruby:2.3
|
||||
|
||||
pages:
|
||||
script:
|
||||
- bundle install -j4
|
||||
- nanoc
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
||||
@@ -1,15 +0,0 @@
|
||||
# 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
|
||||
@@ -1,10 +0,0 @@
|
||||
# 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/
|
||||
Reference in New Issue
Block a user