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
fda37b2f
Commit
fda37b2f
authored
Aug 08, 2016
by
Z.J. van de Weg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update templates
parent
91030230
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
19 deletions
+19
-19
vendor/gitignore/Global/VisualStudioCode.gitignore
vendor/gitignore/Global/VisualStudioCode.gitignore
+4
-2
vendor/gitlab-ci-yml/Pages/Hexo.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/Hexo.gitlab-ci.yml
+9
-17
vendor/gitlab-ci-yml/Ruby.gitlab-ci.yml
vendor/gitlab-ci-yml/Ruby.gitlab-ci.yml
+6
-0
No files found.
vendor/gitignore/Global/VisualStudioCode.gitignore
View file @
fda37b2f
.vscode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
vendor/gitlab-ci-yml/Pages/Hexo.gitlab-ci.yml
View file @
fda37b2f
# 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
image
:
node:4.2.2
pages
:
stage
:
deploy
cache
:
paths
:
-
node_modules/
script
:
-
pip install hyde
-
hyde gen -d public
-
npm install hexo-cli -g
-
npm install
-
hexo deploy
artifacts
:
paths
:
-
public
only
:
-
master
-
master
vendor/gitlab-ci-yml/Ruby.gitlab-ci.yml
View file @
fda37b2f
...
...
@@ -10,6 +10,9 @@ services:
-
redis:latest
-
postgres:latest
variables
:
POSTGRES_DB
:
database_name
# Cache gems in between builds
cache
:
paths
:
...
...
@@ -34,6 +37,9 @@ rspec:
-
rspec spec
rails
:
variables
:
DATABASE_URL
:
"
postgresql://postgres:postgres@postgres:5432/$POSTGRES_DB"
script
:
-
bundle exec rake db:migrate
-
bundle exec rake db:seed
-
bundle exec rake test
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