Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kurone-kito committed Mar 6, 2019
2 parents 5f32635 + ce1a64d commit 1aa18de
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
jobs:
build:
docker:
- image: electronuserland/builder:wine-chrome
working_directory: ~/repo
steps:
- checkout
# - restore_cache:
# keys:
# - v1-dependencies-{{ checksum "package.json" }}
# - v1-dependencies-
# - run: npm install
# - save_cache:
# paths:
# - node_modules
# key: v1-dependencies-{{ checksum "package.json" }}
# - run: npm test
# - run: npm run build:binary
# - run: npm run build:binary
6 changes: 5 additions & 1 deletion wercker.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
box: node
box: electronuserland/builder:wine-chrome
build:
steps:
- npm-install
- npm-test
build-dev:
steps:
- install-packages:
packages: libopenjp2-tools bsdtar snapcraft
- script:
name: build to binary for develop
code: npm run build:binary
build-prod:
steps:
- install-packages:
packages: libopenjp2-tools bsdtar snapcraft
- script:
name: build to binary for production
code: npm run production

0 comments on commit 1aa18de

Please sign in to comment.