mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-07 09:31:31 +01:00
appveyor.yml
This commit is contained in:
parent
bfb1e5ce80
commit
074693bc2b
54
appveyor.yml
Normal file
54
appveyor.yml
Normal file
@ -0,0 +1,54 @@
|
||||
image:
|
||||
- Visual Studio 2017
|
||||
|
||||
branches:
|
||||
except:
|
||||
- l10n_master
|
||||
|
||||
environment:
|
||||
WIN_PKG_PATH: C:\Users\appveyor\.pkg-cache\v2.5\fetched-v10.4.1-win-x64
|
||||
|
||||
init:
|
||||
- ps: Install-Product node 10
|
||||
- ps: |
|
||||
$env:PACKAGE_VERSION = (Get-Content -Raw -Path .\package.json | ConvertFrom-Json).version
|
||||
$env:PATH = "C:\Program Files (x86)\Resource Hacker;${env:PATH}"
|
||||
|
||||
install:
|
||||
- ps: choco install reshack --no-progress
|
||||
- ps: choco install cloc --no-progress
|
||||
- ps: cloc --include-lang TypeScript,JavaScript --vcs git
|
||||
- ps: .\scripts\make-versioninfo.ps1
|
||||
|
||||
before_build:
|
||||
- cmd: node --version
|
||||
- cmd: npm --version
|
||||
|
||||
build_script:
|
||||
- cmd: ResourceHacker -open %WIN_PKG_PATH% -save %WIN_PKG_PATH% -action delete -mask ICONGROUP,1, & exit 0
|
||||
- cmd: ResourceHacker -open .\version-info.rc -save .\version-info.res -action compile
|
||||
- cmd: ResourceHacker -open %WIN_PKG_PATH% -save %WIN_PKG_PATH% -action addoverwrite -resource .\version-info.res
|
||||
- cmd: npm install
|
||||
- cmd: npm run dist
|
||||
- cmd: 7z a ./dist/bw-windows-%PACKAGE_VERSION%.zip ./dist/windows/bw.exe
|
||||
- cmd: 7z a ./dist/bw-macos-%PACKAGE_VERSION%.zip ./dist/macos/bw
|
||||
- cmd: 7z a ./dist/bw-linux-%PACKAGE_VERSION%.zip ./dist/linux/bw
|
||||
- ps: .\scripts\choco-pack.ps1
|
||||
|
||||
artifacts:
|
||||
- path: dist/windows/bw.exe
|
||||
- path: dist/linux/bw
|
||||
- path: dist/macos/bw
|
||||
- path: dist/chocolatey/bitwarden-cli.%PACKAGE_VERSION%.nupkg
|
||||
|
||||
cache:
|
||||
- 'C:\Users\appveyor\.pkg-cache\ -> package.json'
|
||||
|
||||
deploy:
|
||||
provider: GitHub
|
||||
auth_token: $(GH_TOKEN)
|
||||
artifact: /.*/
|
||||
force_update: true
|
||||
on:
|
||||
branch: master
|
||||
APPVEYOR_REPO_TAG: true
|
Loading…
Reference in New Issue
Block a user