forked from tomjoht/documentation-theme-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GitLab support for GitLab pages and GitLab Edit Links
- Loading branch information
chickahoona
committed
Aug 20, 2017
1 parent
2690b49
commit 1290887
Showing
14 changed files
with
2,731 additions
and
567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ _site/ | |
.jekyll-metadata | ||
_pdf | ||
.DS_Store | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
image: ruby:2.3 | ||
|
||
variables: | ||
JEKYLL_ENV: production | ||
|
||
test: | ||
stage: test | ||
script: | ||
- sh ./var/build.sh | ||
- bundle exec jekyll build -d test | ||
artifacts: | ||
paths: | ||
- test | ||
except: | ||
- master | ||
|
||
pages: | ||
stage: deploy | ||
script: | ||
- sh ./var/build.sh | ||
- bundle exec jekyll build -d public | ||
artifacts: | ||
paths: | ||
- public | ||
only: | ||
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
apt-get update && \ | ||
apt-get install -y libfontconfig zip npm git apt-transport-https ca-certificates curl openssl && \ | ||
npm i -g npm && \ | ||
npm cache clean -f && \ | ||
npm install -g n && \ | ||
n stable && \ | ||
node --version && \ | ||
npm --version && \ | ||
bundle install |