Browse Source

Some improves

pull/1863/head
Ramiro Saenz 7 years ago
parent
commit
e1eddcc942
  1. 14
      appveyor.yml

14
appveyor.yml

@ -10,6 +10,8 @@ branches:
skip_non_tags: true skip_non_tags: true
init: init:
- cmd: git config --global core.autocrlf input - cmd: git config --global core.autocrlf input
- cmd: node --version
- cmd: npm --version
install: install:
- ps: Install-Product node $env:nodejs_version - ps: Install-Product node $env:nodejs_version
- cmd: >- - cmd: >-
@ -19,25 +21,17 @@ install:
git clone https://github.com/saenzramiro/rambox-build.git %APPVEYOR_BUILD_FOLDER%\build\production\Rambox\ git clone https://github.com/saenzramiro/rambox-build.git %APPVEYOR_BUILD_FOLDER%\build\production\Rambox\
npm install npm@5.7.1 -g
npm install npm install
npm --prefix %APPVEYOR_BUILD_FOLDER%\build\production\Rambox\ install %APPVEYOR_BUILD_FOLDER%\build\production\Rambox\ npm --prefix %APPVEYOR_BUILD_FOLDER%\build\production\Rambox\ install %APPVEYOR_BUILD_FOLDER%\build\production\Rambox\
npm prune
cache: cache:
- '%APPDATA%\npm-cache' - '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron' - '%USERPROFILE%\.electron'
- node_modules - node_modules
- build\production\Rambox\node_modules - build\production\Rambox\node_modules
build_script: build_script:
- cmd: >- - cmd: npm i electron-builder@20.27.1
node --version - cmd: npm run build:win
npm --version
npm run build:win
test: off test: off
artifacts: artifacts:
- path: dist\win\*.exe - path: dist\win\*.exe

Loading…
Cancel
Save