We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a663a15 + 7e71302 commit e031fa7Copy full SHA for e031fa7
appveyor.yml
@@ -1,29 +1,20 @@
1
-version: 1.0.{build}
2
-os: Visual Studio 2015
3
-clone_folder: C:\projects\rpc
4
-test: off
+image: Visual Studio 2019
+configuration: Release
5
6
branches:
7
only:
8
- master
9
- dev
10
11
-configuration:
12
- - Release
13
-
14
-environment:
15
- matrix:
16
- - CMAKE_PLATFORM: "Visual Studio 14 2015"
17
- #- CMAKE_PLATFORM: "Visual Studio 15 2017"
18
19
-install: true
20
21
-build_script:
22
- - cd c:\projects\rpc
+before_build:
23
- git submodule init
24
- git submodule update --init --recursive
25
- md build
26
- cd build
27
- - cmake -DRPCLIB_BUILD_TESTS=ON -G "%CMAKE_PLATFORM%" ..
28
- - cmake --build . --config %CONFIGURATION%
+ - cmake .. -DRPCLIB_BUILD_TESTS=ON
+
+build:
+ project: build/rpc.sln
+test_script:
29
- .\tests\Release\rpc_test.exe
0 commit comments