Skip to content

Commit

Permalink
Merge pull request #893 from mavlink/fix-exe-name
Browse files Browse the repository at this point in the history
travis: change name of mavsdk_server for Windows
  • Loading branch information
julianoes committed Nov 1, 2019
2 parents db9517d + 18c8ca2 commit a64b0b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 66 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ before_deploy:
if [[ "${BUILD_TARGET}" = "osx_build" ]]; then
mv build/release/install/bin/mavsdk_server build/release/install/bin/mavsdk_server_macos;
fi;
if [[ "${BUILD_TARGET}" = "windows" ]]; then
mv build/release/install/bin/mavsdk_server_bin.exe build/release/install/bin/mavsdk_server_win64.exe;
fi;
fi

deploy:
Expand Down Expand Up @@ -200,7 +203,7 @@ deploy:
secure: hBX3pFWNZiDbz4yKnOjhLg3QS9Ubn1XePxSeIt2Btq5GzbomOPDCgpIFijBppliwj9oKc302EMnZSg2QWeAzFKn9UnmIflJ0E4iymYgwWdTJv+bSnYALJEmO8F6gF9FgRlPk8FCtZiECoTsa75w5TrEZKZpFpmzVYRiDu0eo6sEjW7UJPC0A2KSTXLrBCHSIZy/iasbGmuur4brG7NO0QdMOvDXvhsYfkXDRJFMTtTHvLiKJcqiunPfqARzf1H4x4iczRYscKu5Vn8Kmw3NANGkcIDvEj4ooih831EXxACRZw0VgycgNHOKRXKC9pZ4hLQMon+jxpQX+X8k/K5161oEkF/gCVKyFb31Pk/4Uwe81p1GJY2lAC7MDUxA98RKXhdvVYF2Cp44+IbF0YVoWRUtVAhknXRQ3Weg25kyVSu83q2nN2nZq2qGTnpNIbdN56s/F+uaFtipGEh+vmiv8rNUz+Z5MFrY2FQaSvBTFw9K4tNs9uc+VQd1bE7X5wh0yywEqUEw2nzqTB2xR+OubygUASbk2GLNdc254P0lrzCHbNM62Y7sRX06CM7hPlwhELEkVtUXZWJ0KuhQyLvRh3aPJ3Jj30EswTt/FGT1gzSP1FjjHBRZCK4P2D2rwJ5TMn2JrZKfPxmEd3kVmn6h80+gBbKgonGmZspd2SvPEI5g=
file_glob: true
file:
- "build/release/install/bin/mavsdk_server_bin.exe"
- "build/release/install/bin/mavsdk_server_win64.exe"
on:
repo: mavlink/MAVSDK
tags: true
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<img alt="MAVSDK" src="https://mavsdk.mavlink.io/develop/assets/site/sdk_logo_full.png" width="400">

[![travis-ci build status](https://travis-ci.org/mavlink/MAVSDK.svg?branch=develop)](https://travis-ci.org/mavlink/MAVSDK)
[![Build status](https://ci.appveyor.com/api/projects/status/1ntjvooywpxmoir8/branch/develop?svg=true)](https://ci.appveyor.com/project/Dronecode/dronecore/branch/develop)
[![Coverage Status](https://coveralls.io/repos/github/mavlink/MAVSDK/badge.svg?branch=develop)](https://coveralls.io/github/mavlink/MAVSDK?branch=develop)

## Description
Expand All @@ -16,7 +15,7 @@ It aims to be:

The core library is written in C++ and is used as the common "backend" to auto-generated front end libraries for different programming languages. The generated libraries share similar APIs (because they are autogenerated from a common interface) but follow idiomatic patterns expected by end users (for example, the Python library is installed from PyPi using *pip*, and includes everything you need to get up and running).

This repo contains the source code for the C++ core.
This repo contains the source code for the C++ core.
Other important repos include:
- [MAVSDK-Proto](https://github.com/mavlink/MAVSDK-Proto) - Collection of proto files used by gRPC in MAVSDK (common interface definitions)
- [MAVSDK-Python](https://github.com/mavlink/MAVSDK-Python) - MAVSDK client for Python
Expand Down
63 changes: 0 additions & 63 deletions appveyor.yml

This file was deleted.

0 comments on commit a64b0b6

Please sign in to comment.