Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

appveyor: fix PX4 version format check #12555

Merged
merged 1 commit into from
Jul 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Build version
version: "{build}"
# shallow clone the main repo
clone_depth: 1
# do not shallow clone because we want to infer the version from the last tag

branches:
only:
Expand Down Expand Up @@ -36,7 +35,7 @@ build_script:
# safe the repopath for switching to it in cygwin bash
- for /f %%i in ('cygpath -u %%CD%%') do set repopath=%%i
# build the make target
- call bash --login -c "cd $repopath && git fetch --tags && make $PX4_CONFIG"
- call bash --login -c "cd $repopath && make $PX4_CONFIG"

# Note: using bash --login is important
# because otherwise certain things (like python; import numpy) do not work
Expand Down