-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #SB-000 merge: Merge pull request #18 from project-sunbird/master
Merge master into Release-1.14.0-S3
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
version: 2.1 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/node:7.10 | ||
environment: | ||
version_number: $CIRCLE_BRANCH | ||
build_number: $CIRCLE_BUILD_NUM | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
|
||
- run: npm install | ||
- run: cd app && sudo npm install -g bower | ||
- run: cd app && bower cache clean | ||
- run: cd app && bower install --force | ||
- run: sudo npm install -g gulp | ||
- run: gulp clone-plugins | ||
- run: gulp packageCorePlugins | ||
- run: npm run plugin-build | ||
- run: npm run build | ||
- run: npm run test | ||
- store_artifacts: | ||
path: generic-editor.zip | ||
destination: generic-editor.zip | ||
|
||
- save_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
paths: ./node_modules | ||
|
||
|
||
workflows: | ||
version: 2.1 | ||
build_and_test: | ||
jobs: | ||
- build |
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