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

Commit

Permalink
Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
oniatsu committed Jan 23, 2016
1 parent 9696bc3 commit ddead6c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 52 deletions.
78 changes: 28 additions & 50 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,57 +1,35 @@
language: objective-c
#cache:
#directories:
#- node_modules
#env:
#- NODE_VERSION="4.1"
#before_install:
#- git clone https://github.com/creationix/nvm.git /tmp/.nvm
#- source /tmp/.nvm/nvm.sh
#- nvm install $NODE_VERSION
#- nvm use --delete-prefix $NODE_VERSION
#- node --version
#before_install:
#- npm install npm -g
before_script:
#- brew update
#- brew upgrade xctool || true
#- brew install Caskroom/cask/xquartz
#- brew unlink libpng
- brew install libpng
#- brew update
#- brew install wine
#- wine --version
#- brew install curl
#- npm install
#install:
#- npm install
#script:
#- npm test
#- brew cleanup && brew prune
#- brew update && brew upgrade
#- brew install wine
#- brew install makensis
#- wine --version
#- npm run pack:win
#- npm run build:win
#- npm run archive:win
#after_failure:
#- echo ">>>"
#- "[ -f /Users/travis/build/oniatsu/Google-Photos-desktop-viewer-app/npm-debug.log ] && cat /Users/travis/build/oniatsu/Google-Photos-desktop-viewer-app/npm-debug.log"
#before_deploy:
#- brew update
#- brew install wine makensis
#- npm run archive:win
cache:
directories:
- node_modules
env:
- NODE_VERSION="4.1"
before_install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use --delete-prefix $NODE_VERSION
- node --version
install:
- npm install
#before_script:
script:
- npm test
before_deploy:
- brew update
- brew install wine
- wine --version
- brew install makensis
- npm run archive
deploy:
provider: releases
api_key:
secure: rHkNMAOFTOXoE2aiNw6YTOmfJUEE0Hk3PbljK0caHKlI0V/0J+cXbWDAn/+8key6DITVYAaRvpBNx5pI5SMibEaUPah1E5fPzSdHdcmpVO4FlPDyA/b4SSxXGittGKf3GrqdkgNNVI/oY4KuzFVU3ZXJTPbgRC858LlU0J9ni01GZ8Y1q2SKSOu4LAwHExbG4vHN9ysAVCr3+sCt56omQJFSOSxzwXhD7UtczYpreP3E0lQggfy5UtgTqvSlEM+ZOZOSX8DKltJx4fTV9ACt0HoYUdeIsCXq5JZVGT4hb6WFXV7wqkmbh3jXVh9TQ3jJVfaw/lRwrdiudd6K/2QY4tC79XoOKwitYGQ9td0y1CYgyBfjZG/PJ+X2n2ndKarUwZJeDnJ94j+Nco0q4esUZXjkhMvlftFOHa1uLMgfatElHKiao7zIlWdcyUkSJaT71cTOrgM2EBhWSE2OiP5UDzv3OEKHCFoUeoPAYap6s4vamacK/yW/JxTkOuqlaj6vWLTbxNAXjwOA5T6wisVbri7+LVUIAupi2nEt3DO7nk+nZ8be5bZgGnXmps7VUfLlk7mM9JOYYVjWlOAoChNp2OwJkXgIRfjLM7xtwXaV3S/mtbr85+jl//BogOdLLs1w/CWhBhbz4wWeincFugXLcqwWDUepA6mHW/gbAFxs7OA=
file: dist/osx/Google-Photos-osx.zip
file:
- dist/win/Google-Photos-win.zip
- dist/osx/Google-Photos-osx.zip
skip_cleanup: true
on:
tags: true
repo: oniatsu/Google-Photos-desktop-viewer-app
skip_cleanup: true
after_deploy:
- "[ -f /Users/travis/build/oniatsu/Google-Photos-desktop-viewer-app/npm-debug.log ] && cat /Users/travis/build/oniatsu/Google-Photos-desktop-viewer-app/npm-debug.log"
after_script:
- "[ -f /Users/travis/build/oniatsu/Google-Photos-desktop-viewer-app/npm-debug.log ] && cat /Users/travis/build/oniatsu/Google-Photos-desktop-viewer-app/npm-debug.log"
tags: true
all_branches: true
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"clean:osx": "rm -rf ./dist/osx",
"clean:win": "rm -rf ./dist/win",

"pack": "npm run clean && npm run build:osx && npm run build:win",
"pack": "npm run pack:osx && npm run build:win",
"pack:osx": "npm run clean:osx && electron-packager . \"Google Photos\" --out=dist/osx --platform=darwin --arch=x64 --version=0.36.2 --icon=assets/osx/icon.icns --ignore=\"dist|assets\"",
"pack:win": "npm run clean:win && electron-packager . \"Google Photos\" --out=dist/win --platform=win32 --arch=ia32 --version=0.36.2 --icon=assets/win/icon.ico --ignore=\"dist|assets\"",

"build": "npm run pack:osx && npm run pack:win",
"build": "npm run build:osx && npm run build:win",
"build:osx": "npm run pack:osx && electron-builder \"dist/osx/Google Photos-darwin-x64/Google Photos.app\" --platform=osx --out=\"dist/osx\" --config=builder.json",
"build:win": "npm run pack:win && electron-builder \"dist/win/Google Photos-win32-ia32\" --platform=win --out=\"dist/win\" --config=builder.json",

Expand Down

0 comments on commit ddead6c

Please sign in to comment.