1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/appveyor.yml

28 lines
531 B
YAML
Raw Normal View History

2017-11-13 14:11:40 +02:00
image: Visual Studio 2017
platform:
- x64
2017-11-23 21:29:03 +02:00
# cache:
2017-11-13 15:14:21 +02:00
# Not caching node_modules because appveyor doesn't restore it afterwards (not sure why)
# - node_modules
2017-11-21 21:31:43 +02:00
# - '%USERPROFILE%\.electron'
2017-11-13 14:01:38 +02:00
install:
2017-11-13 14:11:40 +02:00
- ps: Install-Product node 8 x64
- yarn
2017-11-13 14:01:38 +02:00
2017-11-13 14:11:40 +02:00
build_script:
- ps: xcopy /C /I /H /R /Y /S ReactNativeClient\lib ElectronClient\app\lib
- npm install
2019-12-14 03:28:37 +02:00
- npm run tsc
2018-02-05 19:34:31 +02:00
- ps: cd Tools
- npm install
- ps: cd ..\ElectronClient\app
2017-11-13 14:16:37 +02:00
- npm install
2017-11-13 14:06:19 +02:00
- yarn dist
2017-11-13 14:11:40 +02:00
2017-11-13 14:13:17 +02:00
test: off
2019-05-06 22:31:37 +02:00
# We only want to build tags
skip_non_tags: true