forked from Project-OSRM/osrm-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libosmium to 2.18.0. Fix problem with Docker image build. (Pro…
- Loading branch information
1 parent
a3fe567
commit c45813a
Showing
333 changed files
with
19,918 additions
and
11,799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: "https://osmcode.org/sponsors.html" |
48 changes: 48 additions & 0 deletions
48
third_party/libosmium/.github/ISSUE_TEMPLATE/bug-report.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
name: Report problems with the software | ||
about: You found a (possible) bug in libosmium | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## What version of libosmium are you using? | ||
|
||
<!-- Please use the [latest | ||
release](https://github.com/osmcode/libosmium/releases) or master if at all | ||
possible. --> | ||
|
||
|
||
## What operating system and compiler are you using? | ||
|
||
<!-- Also what Linux distribution if applicable, OS version? --> | ||
|
||
|
||
## Tell us something about your system | ||
|
||
<!-- How much RAM do you have, how many CPUs, bare metal or cloud setup? --> | ||
|
||
|
||
## What did you do exactly? | ||
|
||
<!-- Please provide the command(s) you used including all options etc. Include | ||
links to input files. --> | ||
|
||
|
||
## What did you expect to happen? | ||
|
||
<!-- Describe in detail what you expected the above would do. --> | ||
|
||
|
||
## What did happen instead? | ||
|
||
<!-- Please describe what happened and why you think this is wrong. Please | ||
include (or link to, if it is too verbose) the log output. --> | ||
|
||
|
||
## What did you do to try analyzing the problem? | ||
|
||
<!-- Describe what steps you already did to try analyzing the problem before | ||
reporting. --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
contact_links: | ||
- name: help.osm.org | ||
url: https://help.openstreetmap.org/ | ||
about: Ask questions and get support from the community. |
10 changes: 10 additions & 0 deletions
10
third_party/libosmium/.github/actions/build-windows/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Windows Build | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Build | ||
run: cmake --build . --config Release --verbose | ||
shell: bash | ||
working-directory: build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Build | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Build | ||
run: make VERBOSE=1 | ||
shell: bash | ||
working-directory: build | ||
|
13 changes: 13 additions & 0 deletions
13
third_party/libosmium/.github/actions/cmake-windows/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Windows CMake | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Create build directory | ||
run: mkdir build | ||
shell: bash | ||
- name: Configure | ||
run: cmake -LA .. -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DBUILD_HEADERS=OFF -DBUILD_BENCHMARKS=ON -DOsmium_DEBUG=TRUE -DPROTOZERO_INCLUDE_DIR=${GITHUB_WORKSPACE}/../protozero/include | ||
shell: bash | ||
working-directory: build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: CMake | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Create build directory | ||
run: mkdir build | ||
shell: bash | ||
- name: Configure | ||
run: | | ||
cmake -LA .. \ | ||
-DBUILD_DATA_TESTS=ON \ | ||
-DUSE_CPP_VERSION=${CPP_VERSION} \ | ||
-DWITH_PROJ=${WITH_PROJ} \ | ||
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ | ||
-DPROTOZERO_INCLUDE_DIR=${GITHUB_WORKSPACE}/../protozero/include | ||
shell: bash | ||
working-directory: build | ||
|
10 changes: 10 additions & 0 deletions
10
third_party/libosmium/.github/actions/ctest-windows/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Windows Test | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Test | ||
run: ctest --output-on-failure -C Release | ||
shell: bash | ||
working-directory: build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: ctest | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Test | ||
run: ctest --output-on-failure | ||
shell: bash | ||
working-directory: build | ||
|
13 changes: 13 additions & 0 deletions
13
third_party/libosmium/.github/actions/install-macos/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Install homebrew packages on macOS | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install packages | ||
run: | | ||
brew install \ | ||
boost \ | ||
gdal \ | ||
google-sparsehash | ||
shell: bash | ||
|
9 changes: 9 additions & 0 deletions
9
third_party/libosmium/.github/actions/install-protozero/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Install Protozero from git | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install from git | ||
run: git clone --quiet --depth 1 https://github.com/mapbox/protozero.git ../protozero | ||
shell: bash | ||
|
23 changes: 23 additions & 0 deletions
23
third_party/libosmium/.github/actions/install-ubuntu/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Install apt packages on Ubuntu/Debian | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install packages | ||
run: | | ||
sudo apt-get update -q | ||
sudo apt-get install -yq \ | ||
doxygen \ | ||
libboost-dev \ | ||
libgdal-dev \ | ||
libgeos++-dev \ | ||
liblz4-dev \ | ||
libproj-dev \ | ||
libsparsehash-dev \ | ||
ruby-json \ | ||
spatialite-bin | ||
test "$CC" = clang-6.0 && sudo apt-get install -yq --no-install-suggests --no-install-recommends clang-6.0 | ||
test "$CC" = clang-8 && sudo apt-get install -yq --no-install-suggests --no-install-recommends clang-8 | ||
test "$CC" = clang-13 && sudo apt-get install -yq --no-install-suggests --no-install-recommends clang-13 | ||
shell: bash | ||
|
Oops, something went wrong.