forked from HSLdevcom/OpenTripPlanner
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'd4a1d8fb' into otp2_move_speed_test_to_routing_worker
- Loading branch information
Showing
1,008 changed files
with
25,461 additions
and
21,678 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,23 +7,21 @@ on: | |
|
||
jobs: | ||
changelog-entry: | ||
if: github.event.pull_request.merged && github.repository_owner == 'opentripplanner' | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
if: github.event.pull_request.merged && github.repository_owner == 'opentripplanner' | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.CHANGELOG_TOKEN }} | ||
|
||
- name: Configure Git User | ||
if: github.event.pull_request.merged && github.repository_owner == 'opentripplanner' | ||
run: | | ||
git config --global user.name 'OTP Changelog Bot' | ||
git config --global user.email '[email protected]' | ||
- name: Generate changelog entry from PR information | ||
if: github.event.pull_request.merged && github.repository_owner == 'opentripplanner' | ||
run: | | ||
# if the title contains "changelog skip" we don't generate an entry | ||
TITLE_LOWER_CASE=`echo $TITLE | awk '{print tolower($0)}'` | ||
|
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,24 @@ | ||
name: 'Close stale issues' | ||
|
||
on: | ||
schedule: | ||
- cron: '30 7 * * *' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
stale: | ||
if: github.repository_owner == 'opentripplanner' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
id: stale | ||
with: | ||
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 30 days' | ||
days-before-stale: 90 | ||
days-before-close: 30 | ||
operations-per-run: 10 | ||
exempt-issue-labels: 'Roadmap' | ||
ascending: true |
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 |
---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up JDK 11 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
java-version: 17 | ||
|
||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
|
@@ -52,7 +52,7 @@ jobs: | |
- name: Build Norway graph | ||
run: | | ||
cp test/ci-performance-test/build-config.json graph/build-config.json | ||
cp target/otp-2.1.0-SNAPSHOT-shaded.jar otp.jar | ||
cp target/otp-*-SNAPSHOT-shaded.jar otp.jar | ||
java -Xmx32G -jar otp.jar --build --save graph | ||
- name: Copy graph, run speed test | ||
|
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
.pydevproject | ||
.settings | ||
.sonar | ||
.nvmrc | ||
*~ | ||
*.ipr | ||
*.iml | ||
|
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
Oops, something went wrong.