Skip to content

Commit 1436e96

Browse files
wip
2 parents 21f53ed + 8ae9aba commit 1436e96

File tree

759 files changed

+50864
-100149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

759 files changed

+50864
-100149
lines changed

.github/workflows/stale.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: 'Close stale issues'
22
on:
3+
# NOTE: uncomment if you want to test changes to this file in PRs CI
4+
# pull_request:
5+
# branches:
6+
# - master
37
schedule:
48
- cron: '30 1 * * *' # every day at 1:30am
59
permissions:
@@ -12,6 +16,7 @@ jobs:
1216
steps:
1317
- uses: actions/stale@v9
1418
with:
19+
operations-per-run: 3000
1520
stale-issue-message: 'This issue seems to be stale. It will be closed in 30 days if no further activity occurs.'
1621
stale-pr-message: 'This PR seems to be stale. Is it still relevant?'
1722
days-before-issue-stale: 180 # 6 months

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ Thumbs.db
4646
/example/build/
4747
/test/data/monaco.osrm*
4848
/test/data/ch
49-
/test/data/corech
5049
/test/data/mld
5150
/cmake/postinst
5251

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
- NodeJS:
2525
- CHANGED: Use node-api instead of NAN. [#6452](https://github.com/Project-OSRM/osrm-backend/pull/6452)
2626
- Misc:
27+
- CHANGED: Use thread_local instead of boost::thread_specific_ptr. [#6991](https://github.com/Project-OSRM/osrm-backend/pull/6991)
28+
- CHANGED: Bump flatbuffers to v24.3.25 version. [#6988](https://github.com/Project-OSRM/osrm-backend/pull/6988)
29+
- CHANGED: Add .reserve(...) to assembleGeometry function. [#6983](https://github.com/Project-OSRM/osrm-backend/pull/6983)
2730
- CHANGED: Get rid of boost::optional leftovers. [#6977](https://github.com/Project-OSRM/osrm-backend/pull/6977)
2831
- CHANGED: Use Link Time Optimisation whenever possible. [#6967](https://github.com/Project-OSRM/osrm-backend/pull/6967)
2932
- CHANGED: Use struct instead of tuple to define UnpackedPath. [#6974](https://github.com/Project-OSRM/osrm-backend/pull/6974)

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ endif()
133133

134134
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR}/include/)
135135
include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}/include/)
136+
include_directories(SYSTEM ${CMAKE_CURRENT_SOURCE_DIR}/generated/include/)
136137
include_directories(SYSTEM ${CMAKE_CURRENT_SOURCE_DIR}/third_party/sol2/include)
137138

138139
set(BOOST_COMPONENTS date_time iostreams program_options thread unit_test_framework)

features/guidance/collapse.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ Feature: Collapse
10611061
# i
10621062
# """
10631063

1064-
And the node locations
1064+
Given the node locations
10651065
| node | lat | lon | #id |
10661066
| a | -33.9644254 | 151.1378673 | 33226063 |
10671067
| b | -33.9644373 | 151.1377172 | 1072787030 |

features/guidance/roundabout-left-sided.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Feature: Basic Roundabout
99
"""
1010

1111
Scenario: Roundabout exit counting for left sided driving
12-
And a grid size of 10 meters
12+
Given a grid size of 10 meters
1313
And the node map
1414
"""
1515
a
@@ -33,7 +33,7 @@ Feature: Basic Roundabout
3333
| a,h | ab,gh,gh | depart,roundabout turn right exit-3,arrive |
3434

3535
Scenario: Mixed Entry and Exit
36-
And a grid size of 10 meters
36+
Given a grid size of 10 meters
3737
And the node map
3838
"""
3939
c a

features/options/contract/help.feature

Lines changed: 0 additions & 44 deletions
This file was deleted.

features/options/customize/help.feature

Lines changed: 0 additions & 38 deletions
This file was deleted.

features/options/datastore/datastore.feature

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ Feature: osrm-datastore command line options
3333
When I try to run "osrm-datastore {processed_file} --dataset-name cucumber/only_metric_test --only-metric"
3434
Then it should exit successfully
3535

36-
Scenario: osrm-datastore - Displaying help should work
37-
When I try to run "osrm-datastore {processed_file} --help"
38-
Then it should exit successfully
39-
4036
Scenario: osrm-datastore - Errors on invalid path
4137
When I try to run "osrm-datastore invalid_path.osrm"
4238
Then stderr should contain "[error] Config contains invalid file paths."

features/options/extract/help.feature

Lines changed: 0 additions & 47 deletions
This file was deleted.

features/options/partition/help.feature

Lines changed: 0 additions & 53 deletions
This file was deleted.

features/options/routed/help.feature

Lines changed: 0 additions & 71 deletions
This file was deleted.

features/testbot/loop.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Feature: Avoid weird loops caused by rounding errors
7575

7676
@412 @via
7777
Scenario: Avoid weird loops 3
78-
And the node map
78+
Given the node map
7979
"""
8080
a
8181
b e

features/testbot/matching.feature

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -136,22 +136,6 @@ Feature: Basic Map Matching
136136
| trace | matchings |
137137
| abcbd | abbd |
138138

139-
Scenario: Testbot - Map matching with core factor
140-
Given the contract extra arguments "--core 0.8"
141-
Given the node map
142-
"""
143-
a b c d
144-
e
145-
"""
146-
147-
And the ways
148-
| nodes | oneway |
149-
| abcd | no |
150-
151-
When I match I should get
152-
| trace | timestamps | matchings |
153-
| abcd | 0 1 2 3 | abcd |
154-
155139
Scenario: Testbot - Map matching with small distortion
156140
Given the node map
157141
"""

0 commit comments

Comments
 (0)