mirror of
https://github.com/bitwarden/browser
synced 2024-12-18 20:33:00 +01:00
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
image:
|
|
- Visual Studio 2017
|
|
|
|
branches:
|
|
except:
|
|
- l10n_master
|
|
|
|
init:
|
|
- ps: Install-Product node 10
|
|
- cmd: |
|
|
SET PATH=C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64\;%PATH%
|
|
SET DIST_DIR=%APPVEYOR_BUILD_FOLDER%\dist\
|
|
SET DIST_SRC_DIR=%DIST_DIR%Source\
|
|
SET REPO_URL=https://github.com/%APPVEYOR_REPO_NAME%.git
|
|
|
|
install:
|
|
- cmd: npm install -g gulp
|
|
- ps: choco install cloc --no-progress
|
|
- ps: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
|
|
|
|
before_build:
|
|
- cmd: node --version
|
|
- cmd: npm --version
|
|
|
|
build_script:
|
|
- cmd: npm install
|
|
# Do normal build
|
|
- cmd: npm run dist
|
|
- cmd: npm run test
|
|
- cmd: gulp ci
|
|
# Build sources for reviewers
|
|
- cmd: |
|
|
CALL git clone --branch=%APPVEYOR_REPO_BRANCH% %REPO_URL% %DIST_SRC_DIR%
|
|
cd %DIST_SRC_DIR%
|
|
CALL git checkout %APPVEYOR_REPO_COMMIT%
|
|
CALL git submodule update --init --recursive
|
|
cd %DIST_DIR%
|
|
DEL /S/Q "%DIST_SRC_DIR%.git\objects\pack\*"
|
|
CALL 7z a browser-source-%APPVEYOR_BUILD_NUMBER%.zip "%DIST_SRC_DIR%\*"
|
|
cd %APPVEYOR_BUILD_FOLDER%
|
|
|
|
artifacts:
|
|
- path: dist/dist-opera-%APPVEYOR_BUILD_NUMBER%.zip
|
|
- path: dist/dist-chrome-%APPVEYOR_BUILD_NUMBER%.zip
|
|
- path: dist/dist-firefox-%APPVEYOR_BUILD_NUMBER%.zip
|
|
- path: dist/dist-edge-%APPVEYOR_BUILD_NUMBER%.appx
|
|
- path: dist/dist-safari-%APPVEYOR_BUILD_NUMBER%.zip
|
|
- path: dist/browser-source-%APPVEYOR_BUILD_NUMBER%.zip
|
|
- path: coverage/coverage-%APPVEYOR_BUILD_NUMBER%.zip
|
|
|
|
deploy:
|
|
provider: GitHub
|
|
auth_token: $(GH_TOKEN)
|
|
artifact: /.*/
|
|
force_update: true
|
|
on:
|
|
branch: master
|
|
APPVEYOR_REPO_TAG: true
|