Skip to content

Commit 7abad93

Browse files
committed
ci: Add an appveyor windows build script.
1 parent ba8745b commit 7abad93

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

appveyor.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
clone_folder: c:\project\serial
2+
shallow_clone: false
3+
clone_depth: 10
4+
5+
image:
6+
- Visual Studio 2017
7+
8+
platform:
9+
- Win32
10+
11+
configuration: RelWithDebInfo
12+
test: OFF
13+
14+
install:
15+
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat"
16+
- choco install cmake
17+
18+
before_build:
19+
- cd c:\project\serial
20+
- mkdir build
21+
- cd build
22+
- cmake -DDISABLE_CATKIN=ON -DCATKIN_ENABLE_TESTING=OFF ..
23+
24+
build_script:
25+
- cmake build .
26+
- cmake --build . --target install
27+

0 commit comments

Comments
 (0)