Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appveyor.yml - github.com/jgraph/drawio-desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f0a1092a3501dfe2961f56c46fe97d230cffe6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: 1.0.{build}

platform:
  - x64

cache:

init:
  - git config --global core.autocrlf input

clone_script:
  - cmd: git clone --depth=1 -q --branch=%APPVEYOR_REPO_BRANCH% https://github.com/%APPVEYOR_REPO_NAME%.git %APPVEYOR_BUILD_FOLDER%
  - cmd: cd %APPVEYOR_BUILD_FOLDER%
  - cmd: git checkout -qf %APPVEYOR_REPO_COMMIT%
  - ps: (gc .\.gitmodules) -replace 'git@github.com:','https://github.com/' | Out-File -encoding ASCII .gitmodules
  - cmd: git submodule update --init --recursive
 

install:
  - ps: Install-Product node 10 x64
  - npm install -g yarn
  - yarn install
  - cd drawio/src/main/webapp
  - yarn install
  - cd ../..

before_build:

build_script:
  - yarn run sync
  - yarn run release-win
  - yarn run sync disableUpdate
  - yarn run release-appx

test: off