-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/ghi-#4-travis-ci-and-circle-ci-build-integratio…
…n' into develop
- Loading branch information
Showing
3 changed files
with
46 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# title Travis CI Build Configuration + | ||
# project nord + | ||
# version + | ||
# repository https://github.com/arcticicestudio/nord + | ||
# author Arctic Ice Studio + | ||
# email development@arcticicestudio.com + | ||
# copyright Copyright (C) 2016 + | ||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# | ||
# [References] | ||
# Travis CI Documentation | ||
# (https://docs.travis-ci.com) | ||
language: node_js | ||
cache: | ||
directories: | ||
- $HOME/node_modules | ||
before_script: | ||
- npm install -g gulp | ||
- npm install | ||
script: gulp compile-css-template sassdoc |
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,24 @@ | ||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# title Circle CI Build Configuration + | ||
# project nord + | ||
# version + | ||
# repository https://github.com/arcticicestudio/nord + | ||
# author Arctic Ice Studio + | ||
# email development@arcticicestudio.com + | ||
# copyright Copyright (C) 2016 + | ||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# | ||
# [References] | ||
# Circle CI | ||
# (https://circleci.com/docs) | ||
machine: | ||
node: | ||
version: 6.1.0 | ||
dependencies: | ||
override: | ||
- npm install -g gulp | ||
- npm install | ||
test: | ||
override: | ||
- gulp compile-css-template sassdoc | ||
- find . -regextype posix-egrep -regex ".*/build/(.*)" -exec cp {} $CIRCLE_ARTIFACTS \; |