New directory: `scripts/`, in which small scripts for developers reside. - `modernize`: runs all cpp files through `clang-modernize`, respecting out targeted compiler versions, applying C++11 transformations, doing syntax checks and formatting --- in parallel. - `tidy`: runs all cpp files through `clang-tidy`, with selected warnings only, since we do not want to warn on every small detail. Please check the talk slides for `clang-tidy` linked in the references! References: - http://clang.llvm.org/extra/clang-tidy/ - http://llvm.org/devmtg/2014-04/PDFs/Talks/clang-tidy%20LLVM%20Euro%202014.pdf - http://clang.llvm.org/extra/clang-tidy/checks/list.html - https://github.com/Project-OSRM/osrm-backend/pull/1603
22 lines
739 B
Bash
Executable File
22 lines
739 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
OSMIUM_REPO=https://github.com/osmcode/libosmium.git
|
|
OSMIUM_TAG=v2.3.0
|
|
|
|
VARIANT_REPO=https://github.com/mapbox/variant.git
|
|
VARIANT_TAG=v1.0
|
|
|
|
VARIANT_LATEST=$(curl https://api.github.com/repos/mapbox/variant/releases/latest | jq ".tag_name")
|
|
OSMIUM_LATEST=$(curl https://api.github.com/repos/osmcode/libosmium/releases/latest | jq ".tag_name")
|
|
|
|
echo "Latest osmium release is $OSMIUM_LATEST, pulling in \"$OSMIUM_TAG\""
|
|
echo "Latest variant release is $VARIANT_LATEST, pulling in \"$VARIANT_TAG\""
|
|
|
|
read -p "Looks good? (Y/n) " ok
|
|
|
|
if [[ $ok =~ [yY] ]]
|
|
then
|
|
git subtree pull -P third_party/libosmium/ $OSMIUM_REPO $OSMIUM_TAG --squash
|
|
git subtree pull -P third_party/variant/ $VARIANT_REPO $VARIANT_TAG --squash
|
|
fi
|