Skip to content

Commit

Permalink
ci: Add an appveyor windows build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
leamas committed Sep 29, 2020
1 parent ba8745b commit 7abad93
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
clone_folder: c:\project\serial
shallow_clone: false
clone_depth: 10

image:
- Visual Studio 2017

platform:
- Win32

configuration: RelWithDebInfo
test: OFF

install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat"
- choco install cmake

before_build:
- cd c:\project\serial
- mkdir build
- cd build
- cmake -DDISABLE_CATKIN=ON -DCATKIN_ENABLE_TESTING=OFF ..

build_script:
- cmake build .
- cmake --build . --target install

0 comments on commit 7abad93

Please sign in to comment.