swift-nav / libswiftnav

A portable C library implementing GNSS related functions and algorithms.
GNU Lesser General Public License v3.0
17 stars 20 forks source link

ci: don't generate clang-tidy #24

Closed silverjam closed 2 years ago

silverjam commented 2 years ago

This prevents clang-tidy targets from generating a .clang-tidy in the source dir. This is a temporary fix, long term fix is here: https://github.com/swift-nav/cmake/pull/109. This is necessary for swiftnav-rs build since the release and publish process (validated by cargo release minor) wants to make sure that the build doesn't modify things outside of the build dir.

silverjam commented 2 years ago

Running cargo release minor in the swiftnav-sys directory for swifnav-rs this solves the "should not modify things outside of output dir" problem.

silverjam commented 2 years ago

Going to merge for now, still iterating on a long term solution here: https://github.com/swift-nav/cmake/pull/109