Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ci config #3

Merged
merged 5 commits into from
Jul 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"private": true,
"scripts": {
"reg": "reg-suit run --verbose"
},
"devDependencies": {
"reg-keygen-git-hash-plugin": "^0.0.14",
"reg-notify-github-plugin": "^0.0.15",
"reg-publish-s3-plugin": "^0.0.14",
"reg-suit": "^0.0.16"
"reg-keygen-git-hash-plugin": "^0.1.0",
"reg-notify-github-plugin": "^0.1.0",
"reg-publish-s3-plugin": "^0.1.0",
"reg-suit": "^0.1.1"
}
}
2 changes: 1 addition & 1 deletion regconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"core": {
"workingDir": "/Users/yosuke/git/reg-simple-demo/reg",
"workingDir": "reg",
"actualDir": "actual",
"expectedDir": "expected"
},
Expand Down
Binary file added viz-test/sample.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions wercker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
box: node
build:
steps:
- script:
name: configure yarn cache
code: |
export YARN_CACHE=$WERCKER_CACHE_DIR/yarn
- script:
name: install deps
code: |
HOME=$YARN_CACHE yarn
- script:
name: workaround fix detached
code: |
git checkout -b $WERCKER_GIT_BRANCH
- script:
name: create the current snapshot
code: |
touch viz-test/sample.jpg
mkdir -p reg/actual
cp viz-test/sample.jpg reg/actual
- script:
name: run reg
code: |
yarn run reg
Loading