-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.appveyor.yml
64 lines (64 loc) · 1.39 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: 1.0.{build}
image:
- Ubuntu2004
- macos-mojave
- macos
- Visual Studio 2022
for:
-
matrix:
only:
- image: Ubuntu2004
install:
- sh: git submodule update --init --recursive
- sh: export CC=clang
- sh: export CXX=clang++
before_build:
- sh: bash -eo pipefail test.sh
build_script:
- sh: sudo rm -rf build
- sh: bash -eo pipefail build.sh
artifacts:
- path: 'build\*.tar.gz'
-
matrix:
only:
- image: macos-mojave
install:
- sh: git submodule update --init --recursive
- sh: export CC=clang
- sh: export CXX=clang++
before_build:
- sh: bash -eo pipefail test.sh
build_script:
- sh: sudo rm -rf build
- sh: bash -eo pipefail build.sh
artifacts:
- path: 'build\*.tar.gz'
-
matrix:
only:
- image: macos
install:
- sh: git submodule update --init --recursive
- sh: export CC=clang
- sh: export CXX=clang++
before_build:
- sh: bash -eo pipefail test.sh
build_script:
- sh: sudo rm -rf build
- sh: bash -eo pipefail build.sh
artifacts:
- path: 'build\*.tar.gz'
-
matrix:
only:
- image: Visual Studio 2022
install:
- cmd: git submodule update --init --recursive
before_build:
- cmd: call test.bat
build_script:
- cmd: call build.bat
artifacts:
- path: 'build\*.tar.gz'