-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
46 lines (37 loc) · 904 Bytes
/
appveyor.yml
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
36
37
38
39
40
41
42
43
44
45
46
version: "{build}"
branches:
only:
- master
- /appveyor.*/
environment:
SF_CI_BREW_INSTALL: minimal
SF_LOG_BOOTSTRAP: "true"
WSLENV: SF_CI_BREW_INSTALL:SF_LOG_BOOTSTRAP
image: Visual Studio 2019
platform: Any CPU
init:
- git config --global core.autocrlf input
- git config --global core.symlinks true
install:
- git submodule sync --recursive
- git submodule update --init --recursive
- wsl bash -c "cat /etc/os-release"
- wsl bash -c "./.ci.sh before_install"
- wsl bash -c "./.ci.sh install"
# before_build:
build_script:
- wsl bash -c "./.ci.sh before_script"
- wsl bash -c "./.ci.sh script"
# after_build:
# before_test:
# test_script:
# after_test:
on_success:
- wsl bash -c "./.ci.sh after_success"
on_failure:
- wsl bash -c "./.ci.sh after_failure"
on_finish:
- wsl bash -c "./.ci.sh after_script"
# before_deploy:
# deply_script:
# after_deploy: