diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 526d966f30b..00000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,9 +0,0 @@ -# See https://help.github.com/articles/about-codeowners/ - -# Members of the following team will be notified of each pull request, -# and merging PRs requires approval by a member of this team. -* @opentripplanner/otp-review-team - -# The default team above could be overridden for changes to documentation. -# TODO: reduce acceptance requirements or expand to a larger team -docs/* @opentripplanner/otp-review-team diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 15e9e772595..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Report a bug or issue -title: '' -labels: '' -assignees: '' - ---- - -**NOTE:** this issue system is intended for reporting bugs and tracking progress in software -development. For all other usage and software development questions or discussion, please post a -question in our chat room: https://gitter.im/opentripplanner/OpenTripPlanner. - - -## Expected behavior - -## Observed behavior - -## Version of OTP used (exact commit hash or JAR name) - -## Data sets in use (links to GTFS and OSM PBF files) - -## Command line used to start OTP - -## Router config and graph build config JSON - -## Steps to reproduce the problem diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 3d316646331..00000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Feature request -about: Suggest a feature or improvement for OTP -title: '' -labels: new feature -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** - - -**Goal / high level use-case** - - - -**Describe the solution you'd like** - - -**Describe alternatives you've considered** - - -**Additional context** - diff --git a/.github/ISSUE_TEMPLATE/roadmap_epic.md b/.github/ISSUE_TEMPLATE/roadmap_epic.md deleted file mode 100644 index 2b38ba3191f..00000000000 --- a/.github/ISSUE_TEMPLATE/roadmap_epic.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Roadmap Epic -about: Suggest an idea for the Roadmap -title: '' -labels: Roadmap -assignees: '' - ---- - -### Describe expected behavior -- What: -- Why: -- When: - -### Linked issue(s) - - -### OTP PO Discussion meeting details -- Date: -- Link(s): - -### Extra Comments (Optional) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index da79a466e0b..00000000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,70 +0,0 @@ -## PR Instructions - -When creating a pull request, please follow the format below. For each section, *replace* the -guidance text with your own text, keeping the section heading. If you have nothing to say in a -particular section, you can completely delete the section including its heading to indicate that you -have taken the requested steps. None of these instructions or the guidance text (non-heading text) -should be present in the submitted PR. These sections serve as a checklist: when you have replaced -or deleted all of them, the PR is considered complete. As of 2021, most regular OTP contributors -participate in our twice-weekly conference calls. For all but the simplest and smallest PRs, -participation in these discussions is necessary to facilitate the review and merge process. Other -developers can ask questions and provide immediate feedback on technical design and code style, and -resolve any concerns about long term maintenance and comprehension of new code. - -### Summary - -Explain in one or two sentences what this PR achieves. - -### Issue - -Link to or create an [issue](https://github.com/opentripplanner/OpenTripPlanner/issues) that -describes the relevant feature or bug. You need not create an issue for small bugfixes and code -cleanups, but in that case do describe the problem clearly and completely in the "summary" section -above. In the linked issue (or summary section for smaller PRs) please describe: - -- Motivation (problem or need encountered) -- How the code works -- Technical approach and any design considerations or decisions - -Remember that the PR will be reviewed by another developer who may not be familiar with your use -cases or the code you're modifying. It generally takes much less effort for the author of a PR to -explain the background and technical details than for a reviewer to infer or deduce them. PRs may be -closed if they or their linked issues do not contain sufficient information for a reviewer to -proceed. - -Add [GitHub keywords](https://help.github.com/articles/closing-issues-using-keywords/) to this PR's -description, for example: - -Closes #45 - -### Unit tests - -Write a few words on how the new code is tested. - -- Were unit tests added/updated? -- Was any manual verification done? -- Any observations on changes to performance? -- Was the code designed so it is unit testable? -- Were any tests applied to the smallest appropriate unit? -- Do all tests - pass [the continuous integration service](https://github.com/opentripplanner/OpenTripPlanner/blob/dev-2.x/docs/Developers-Guide.md#continuous-integration) - ? - -### Documentation - -- Have you added documentation in code covering design and rationale behind the code? -- Were all non-trivial public classes and methods documented with Javadoc? -- Were any new configuration options added? If so were the tables in - the [configuration documentation](Configuration.md) updated? - -### Changelog - -The [changelog file](https://github.com/opentripplanner/OpenTripPlanner/blob/dev-2.x/docs/Changelog.md) -is generated from the pull-request title, make sure the title describe the feature or issue fixed. -To exclude the PR from the changelog add the label `skip changelog` to the PR. - -### Bumping the serialization version id - -If you have made changes to the way the routing graph is serialized, for example by renaming a field -in one of the edges, then you must add the label `bump serialization id` to the PR. With this label -Github Actions will increase the field `otp.serialization.version.id` in `pom.xml`. diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml deleted file mode 100644 index 4d020b8871f..00000000000 --- a/.github/workflows/cibuild.yml +++ /dev/null @@ -1,233 +0,0 @@ -name: OTP CI Build -# On [push, pull_request] causes double-builds when creating PRs. -# But triggering on push only will miss pull requests from outside authors. -# The push event's ref is the name of the pushed branch; -# The pull_request event's branch name is the merge target branch. -on: - push: - branches: - - master - - dev-1.x - - dev-2.x - pull_request: - branches: - - master - - dev-1.x - - dev-2.x -jobs: - build-linux: - runs-on: ubuntu-latest - timeout-minutes: 20 - steps: - # Starting in v2.2 checkout action fetches all tags when fetch-depth=0, for auto-versioning. - - uses: actions/checkout@v3.3.0 - with: - fetch-depth: 0 - - # nodejs is needed because the dynamic download of it via the prettier maven plugin often - # times out - # Example: https://github.com/opentripplanner/OpenTripPlanner/actions/runs/4490450225/jobs/7897533439 - - uses: actions/setup-node@v3 - with: - node-version: 18 - - # Java setup step completes very fast, no need to run in a preconfigured docker container - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: temurin - cache: maven - - - name: Prepare coverage agent, build and test - # these are split into two steps because otherwise maven keeps long-running HTTP connections - # to Maven Central open which then hang during the package phase because the Azure (Github Actions) - # NAT drops them - # https://github.com/actions/runner-images/issues/1499 - # we set nodePath and npmPath to skip downloading the node binary, which frequently times out - run: | - mvn --batch-mode jacoco:prepare-agent test jacoco:report -P prettierCheck -Dprettier.nodePath=node -Dprettier.npmPath=npm - mvn --batch-mode package -Dmaven.test.skip -P prettierSkip - - - name: Send coverage data to codecov.io - if: github.repository_owner == 'opentripplanner' - uses: codecov/codecov-action@v3.1.1 - with: - files: target/site/jacoco/jacoco.xml - - - name: Deploy to Github Package Registry - if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev-1.x' || github.ref == 'refs/heads/dev-2.x') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: mvn --batch-mode deploy --settings maven-settings.xml -DskipTests -DGITHUB_REPOSITORY=$GITHUB_REPOSITORY -P prettierSkip -P deployGitHub - - build-windows: - timeout-minutes: 20 - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: temurin - cache: maven - # on windows there are frequent failures caused by page files being too small - # https://github.com/actions/virtual-environments/issues/785 - - name: Configure Windows Pagefile - uses: al-cheb/configure-pagefile-action@v1.3 - - name: Run tests - run: mvn --batch-mode test -P prettierSkip - - docs: - if: github.repository_owner == 'opentripplanner' - runs-on: ubuntu-latest - env: - REMOTE: docs - LOCAL_BRANCH: local-pages - REMOTE_BRANCH: main - TOKEN: ${{ secrets.CHANGELOG_TOKEN }} - MASTER_BRANCH_VERSION: 2.4.0 - - steps: - - - uses: actions/checkout@v3.3.0 - # this is necessary so that the correct credentials are put into the git configuration - # when we push to dev-2.x and push the HTML to the git repo - if: github.event_name == 'push' && (github.ref == 'refs/heads/dev-2.x' || github.ref == 'refs/heads/master') - with: - token: ${{ secrets.CHANGELOG_TOKEN }} - # fetch a large-ish number of commits so that we can check when the GraphQL schema file - # was modified last - fetch-depth: 1000 - - - uses: actions/checkout@v3.3.0 - # for a simple PR where we don't push, we don't need any credentials - if: github.event_name == 'pull_request' - - - name: Install Python dependencies - run: pip install -r docs/requirements.txt - - - - name: Build main documentation - if: github.event_name == 'pull_request' - run: mkdocs build - - - uses: actions/setup-node@v3 - with: - node-version: 18 - - - name: Build GTFS GraphQL API documentation - run: | - npm install -g @magidoc/cli@4.0.0 - magidoc generate - - - name: Deploy compiled HTML to Github pages - if: github.event_name == 'push' && (github.ref == 'refs/heads/dev-2.x' || github.ref == 'refs/heads/master') - run: | - git config --global user.name 'OTP Bot' - git config --global user.email 'bot@opentripplanner.org' - - # mike, the versioning plugin for mkdocs, expects there to be a local branch to push to so - # we are cloning one here and commit to it - # mike has support for specifing the origin but then it tries to rebase the _local_ gh-pages - # branch onto the remote which fails. that's the reason for this git hackery. - - git remote add $REMOTE https://$TOKEN@github.com/opentripplanner/docs.git - git fetch $REMOTE $REMOTE_BRANCH:$LOCAL_BRANCH - - # prefix is the root folder where to deploy the HTML, we use 'en' to emulate the URL - # structure of readthedocs - - if [ ${{ github.ref }} = 'refs/heads/master' ]; - then - mike deploy --branch $LOCAL_BRANCH --deploy-prefix en --title=$MASTER_BRANCH_VERSION --update-aliases v$MASTER_BRANCH_VERSION latest - else - mike deploy --branch $LOCAL_BRANCH --deploy-prefix en dev-2.x - fi - - # commit and push the GraphQL documentation if the schema file is newer than the - # compiled output. it's necessary to have this check because the diffs of the magidoc tool - # this are quite large and unnecessarily increase the size of the docs repo even when the - # schema hasn't changed. - # example commit: https://github.com/opentripplanner/docs/commit/45e6ddf8e4a4 - - SCHEMA_FILE_MODIFIED=`git log -n 1 --pretty=format:%ct src/main/resources/org/opentripplanner/apis/gtfs/schema.graphqls` - echo "schema modified at ${SCHEMA_FILE_MODIFIED}" - git checkout $LOCAL_BRANCH - DOCS_MODIFIED=`git log -n 1 --pretty=format:%ct api/dev-2.x/graphql-gtfs/introduction.html` - echo "docs modified at ${DOCS_MODIFIED}" - if [ "${SCHEMA_FILE_MODIFIED}" -gt "${DOCS_MODIFIED}" ]; then - echo "schema.graphqls has been modified, committing updated documentation" - mkdir -p api - rsync -r --delete target/magidoc/api/ api/dev-2.x/ - git add api - git commit -am "Add Magidoc GraphQL documentation" - else - echo "schema.graphqls has not been modified, not committing documentation" - fi - - git push $REMOTE $LOCAL_BRANCH:$REMOTE_BRANCH - - - graphql-code-generation: - if: github.repository_owner == 'opentripplanner' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3.1.0 - - uses: actions/setup-node@v3 - with: - node-version: 16 - - name: Run code generator - working-directory: src/main/java/org/opentripplanner/apis/gtfs/generated - run: | - yarn install - yarn generate - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: temurin - cache: maven - - name: Compile Java code - run: mvn --batch-mode compile -DskipTests -P prettierSkip - - container-image: - if: github.repository_owner == 'opentripplanner' && github.event_name == 'push' && (github.ref == 'refs/heads/dev-2.x' || github.ref == 'refs/heads/master') - runs-on: ubuntu-latest - needs: - - build-windows - - build-linux - steps: - - uses: actions/checkout@v3.1.0 - with: - fetch-depth: 0 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: temurin - cache: maven - - name: Build container image with Jib, push to Dockerhub - env: - CONTAINER_REPO: docker.io/opentripplanner/opentripplanner - CONTAINER_REGISTRY_USER: otpbot - CONTAINER_REGISTRY_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} - run: | - # we give the container two tags - # - "latest" - # - a string like "2.3_2022-12-12T21-38" - - version_with_snapshot=`mvn -q help:evaluate -Dexpression=project.version -q -DforceStdout` - version=${version_with_snapshot/-SNAPSHOT/} - - image_version=${version} - - ## if the Maven version contains SNAPSHOT, then add date to tag - if [[ $version_with_snapshot == *"SNAPSHOT"* ]]; then - image_date=`date +%Y-%m-%dT%H-%M` - image_version="${version}_${image_date}" - echo "Maven version ${version_with_snapshot} contains SNAPSHOT, adding date to container image tag" - fi - - mvn --batch-mode -P prettierSkip compile com.google.cloud.tools:jib-maven-plugin:build -Djib.to.tags=latest,$image_version diff --git a/.github/workflows/close_stale_pr_and_issues.yml b/.github/workflows/close_stale_pr_and_issues.yml index 98619f7e763..4b96429f108 100644 --- a/.github/workflows/close_stale_pr_and_issues.yml +++ b/.github/workflows/close_stale_pr_and_issues.yml @@ -13,12 +13,12 @@ jobs: if: github.repository_owner == 'opentripplanner' runs-on: ubuntu-latest steps: - - uses: actions/stale@v6.0.1 + - uses: actions/stale@v5.0.0 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: 260 + operations-per-run: 180 exempt-issue-labels: 'Roadmap' ascending: true diff --git a/.github/workflows/dev-pipeline.yml b/.github/workflows/dev-pipeline.yml new file mode 100644 index 00000000000..46ccb1c6ebc --- /dev/null +++ b/.github/workflows/dev-pipeline.yml @@ -0,0 +1,20 @@ +name: Process dev-2.x push or pr +on: + push: + branches: + - dev-2.x + pull_request: + branches: + - dev-2.x +jobs: + docker-push: + if: github.ref == 'refs/heads/dev-2.x' + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Build docker image from dev-2.x and push it + run: ./.github/workflows/scripts/build_and_push_dev.sh + env: + DOCKER_USER: ${{ secrets.DOCKER_USER }} + DOCKER_AUTH: ${{ secrets.DOCKER_AUTH }} diff --git a/.github/workflows/performance-test.yml b/.github/workflows/performance-test.yml deleted file mode 100644 index 43250839c33..00000000000 --- a/.github/workflows/performance-test.yml +++ /dev/null @@ -1,115 +0,0 @@ -name: Performance test - -on: - push: - branches: - - dev-2.x - -jobs: - perf-test: - if: github.repository_owner == 'opentripplanner' && !startsWith(github.event.head_commit.message ,'Bump serialization version id for') - runs-on: performance-test - strategy: - fail-fast: false - matrix: - include: - - # Profiles - # - # The profile variable is used to filter out some locations when the speed test is run - # on a branch during development. - # - # - locations with the 'core' profile are always run (even when on a branch) - # - locations with the 'extended' profile are only run after merging to dev-2.x - - - location: germany # all of Germany (500k stops, 200k patterns) but no OSM - iterations: 1 - jfr-delay: "50s" - profile: core - - - location: norway - iterations: 4 - jfr-delay: "35s" - profile: core - - - location: skanetrafiken - iterations: 1 - jfr-delay: "50s" - profile: core - - # extended locations that are run only after merging to dev-2.x - - - location: hamburg # German city - iterations: 1 - jfr-delay: "50s" - profile: extended - - - location: baden-wuerttemberg # German state of Baden-Württemberg: https://en.wikipedia.org/wiki/Baden-W%C3%BCrttemberg - iterations: 1 - jfr-delay: "50s" - profile: extended - - - location: switzerland - iterations: 1 - jfr-delay: "50s" - profile: extended - - - location: washington-state - iterations: 1 - jfr-delay: "20s" - profile: extended - - steps: - - uses: actions/checkout@v3.1.0 - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - with: - fetch-depth: 0 - - - name: Set up JDK 17 - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: temurin - timeout-minutes: 5 - - - name: Set up Maven - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - uses: stCarolas/setup-maven@v.4.5 - with: - maven-version: 3.8.2 - - - name: Build jar - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - env: - MAVEN_OPTS: "-Dmaven.repo.local=/home/lenni/.m2/repository/" - run: mvn -DskipTests --batch-mode package -P prettierSkip - - - name: Build graph - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - run: | - cp target/otp-*-SNAPSHOT-shaded.jar otp.jar - java -Xmx32G -jar otp.jar --build --save test/performance/${{ matrix.location }}/ - - - name: Run speed test - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - env: - PERFORMANCE_INFLUX_DB_PASSWORD: ${{ secrets.PERFORMANCE_INFLUX_DB_PASSWORD }} - SPEEDTEST_LOCATION: ${{ matrix.location }} - MAVEN_OPTS: "-Xmx50g -XX:StartFlightRecording=delay=${{ matrix.jfr-delay }},duration=30m,filename=${{ matrix.location}}-speed-test.jfr -Dmaven.repo.local=/home/lenni/.m2/repository/" - run: | - mvn exec:java -Dexec.mainClass="org.opentripplanner.transit.speed_test.SpeedTest" -Dexec.classpathScope=test -Dexec.args="--dir=test/performance/${{ matrix.location }} -p md -n ${{ matrix.iterations }} -i 3 -0" -P prettierSkip - - - name: Archive travel results file - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - uses: actions/upload-artifact@v3 - with: - name: ${{ matrix.location }}-travelSearch-results.csv - path: test/performance/${{ matrix.location }}/travelSearch-results.csv - - - name: Archive Flight Recorder instrumentation file - if: matrix.profile == 'core' || github.ref == 'refs/heads/dev-2.x' - uses: actions/upload-artifact@v3 - with: - name: ${{ matrix.location }}-flight-recorder - path: ${{ matrix.location}}-speed-test.jfr diff --git a/.github/workflows/post-merge.yml b/.github/workflows/post-merge.yml deleted file mode 100644 index 24adaed960a..00000000000 --- a/.github/workflows/post-merge.yml +++ /dev/null @@ -1,78 +0,0 @@ -name: Post-merge -on: - pull_request_target: - branches: - - dev-2.x - types: [closed] - -jobs: - changelog-entry: - if: github.event.pull_request.merged && github.repository_owner == 'opentripplanner' && !contains(github.event.pull_request.labels.*.name, 'skip changelog') - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v3.1.0 - with: - token: ${{ secrets.CHANGELOG_TOKEN }} - - - name: Configure git user - run: | - git config --global user.name 'OTP Changelog Bot' - git config --global user.email 'changelog-bot@opentripplanner.org' - - - name: Generate changelog entry from PR information - run: | - # add a line above the one which contains AUTOMATIC_CHANGELOG_PLACEHOLDER - ITEM="${TITLE} [#${NUMBER}](${URL})" - TEMP_FILE=docs/Changelog.generated.md - FILE=docs/Changelog.md - awk "/CHANGELOG_PLACEHOLDER/{print \"- $ITEM\"}1" $FILE > $TEMP_FILE - mv $TEMP_FILE $FILE - git add $FILE - git commit -m "Add changelog entry for #${NUMBER} [ci skip]" - git pull --rebase origin dev-2.x - git push ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git HEAD:dev-2.x - env: - # Use environment variables to prevent injection attack - TITLE: ${{ github.event.pull_request.title }} - NUMBER: ${{ github.event.pull_request.number }} - URL: ${{ github.event.pull_request.html_url }} - - serialization-version: - # if you have a dependent job that is skipped (ie. you want to bump the version but not have a changelog entry) you must add - # always() before your actual condition you want for the job - # https://github.com/actions/runner/issues/491#issuecomment-660122693 - if: always() && github.event.pull_request.merged && github.repository_owner == 'opentripplanner' && contains(github.event.pull_request.labels.*.name, 'bump serialization id') - runs-on: ubuntu-latest - needs: [changelog-entry] - steps: - - - name: Install xmllint - run: | - sudo apt-get install -y libxml2-utils - - - name: Configure git user - run: | - git config --global user.name 'OTP Serialization Version Bot' - git config --global user.email 'serialization-version-bot@opentripplanner.org' - - - name: Checkout - uses: actions/checkout@v3.1.0 - with: - token: ${{ secrets.CHANGELOG_TOKEN }} - - - name: Bump serialization version - run: | - version=`xmllint --xpath "//*[local-name()='otp.serialization.version.id']/text()" pom.xml` - bumped=$((version+1)) - sed -Ei "s/.*<\/otp\.serialization\.version\.id>/${bumped}<\/otp\.serialization\.version\.id>/" pom.xml - - git add pom.xml - git commit -m "Bump serialization version id for #${NUMBER}" - # just for safety as the Github repo is eventually consistent, therefore this push competes with the changelog entry one - git pull --rebase origin dev-2.x - git push ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git HEAD:dev-2.x - env: - # Use environment variables to prevent injection attack - NUMBER: ${{ github.event.pull_request.number }} diff --git a/.github/workflows/prod-pipeline.yml b/.github/workflows/prod-pipeline.yml new file mode 100644 index 00000000000..9d90bf62f5c --- /dev/null +++ b/.github/workflows/prod-pipeline.yml @@ -0,0 +1,29 @@ +name: Build v2-prod from release +on: + release: + types: + - published +jobs: + v2-release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set time zone to Europe/Helsinki + uses: zcong1993/setup-timezone@master + with: + timezone: "Europe/Helsinki" + - name: Check Tag + id: check-tag + run: | + if [[ ${GITHUB_REF##*/} =~ ^202[0-9][0-1][0-9][0-3][0-9] ]]; then + echo "match=true" >> $GITHUB_OUTPUT + fi + - name: Push latest image as v2-prod + if: steps.check-tag.outputs.match == 'true' + run: ./.github/workflows/scripts/push_prod.sh + env: + DOCKER_USER: ${{ secrets.DOCKER_USER }} + DOCKER_AUTH: ${{ secrets.DOCKER_AUTH }} + DOCKER_BASE_TAG: v2-prod + DOCKER_DEV_TAG: v2 diff --git a/.github/workflows/scripts/build_and_push_dev.sh b/.github/workflows/scripts/build_and_push_dev.sh new file mode 100755 index 00000000000..7e6fbd27023 --- /dev/null +++ b/.github/workflows/scripts/build_and_push_dev.sh @@ -0,0 +1,25 @@ +#!/bin/bash +set -e + +DOCKER_IMAGE="hsldevcom/opentripplanner" +DOCKER_TAG="v2" + +COMMIT_HASH=$(git rev-parse --short "$GITHUB_SHA") + +DOCKER_TAG_LONG=$DOCKER_TAG-$(date +"%Y-%m-%dT%H.%M.%S")-$COMMIT_HASH +DOCKER_IMAGE_TAG=$DOCKER_IMAGE:$DOCKER_TAG +DOCKER_IMAGE_TAG_LONG=$DOCKER_IMAGE:$DOCKER_TAG_LONG + +# Build image +echo Building OTP +docker build --tag="$DOCKER_IMAGE:builder" -f Dockerfile.builder . +docker run --rm --entrypoint tar "$DOCKER_IMAGE:builder" -c target|tar x -C ./ +docker build --tag="$DOCKER_IMAGE_TAG_LONG" -f Dockerfile . + +docker login -u $DOCKER_USER -p $DOCKER_AUTH +echo "Pushing $DOCKER_TAG image" +docker push $DOCKER_IMAGE_TAG_LONG +docker tag $DOCKER_IMAGE_TAG_LONG $DOCKER_IMAGE_TAG +docker push $DOCKER_IMAGE_TAG + +echo Build completed diff --git a/.github/workflows/scripts/push_prod.sh b/.github/workflows/scripts/push_prod.sh new file mode 100755 index 00000000000..72840a143cd --- /dev/null +++ b/.github/workflows/scripts/push_prod.sh @@ -0,0 +1,29 @@ +#!/bin/bash +set -e + +COMMIT_HASH=$(git rev-parse --short "$GITHUB_SHA") +ORG=hsldevcom + +function imagedeploy { + DOCKER_IMAGE=$ORG/$1 + DOCKER_TAG=${DOCKER_BASE_TAG:-prod} + DOCKER_DEV_TAG=${DOCKER_DEV_TAG:-latest} + + DOCKER_TAG_LONG=$DOCKER_TAG-$(date +"%Y-%m-%dT%H.%M.%S")-$COMMIT_HASH + DOCKER_IMAGE_TAG=$DOCKER_IMAGE:$DOCKER_TAG + DOCKER_IMAGE_TAG_LONG=$DOCKER_IMAGE:$DOCKER_TAG_LONG + DOCKER_IMAGE_DEV=$DOCKER_IMAGE:$DOCKER_DEV_TAG + + echo "processing prod release" + docker pull $DOCKER_IMAGE_DEV + docker tag $DOCKER_IMAGE_DEV $DOCKER_IMAGE_TAG + docker tag $DOCKER_IMAGE_DEV $DOCKER_IMAGE_TAG_LONG + docker push $DOCKER_IMAGE_TAG + docker push $DOCKER_IMAGE_TAG_LONG +} + +docker login -u $DOCKER_USER -p $DOCKER_AUTH + +imagedeploy "opentripplanner" + +echo Deploy complete diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000000..0327b936cea --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +FROM openjdk:17-slim +MAINTAINER Reittiopas version: 0.1 + +VOLUME /opt/opentripplanner/graphs + +RUN apt-get update \ + && apt-get install -y curl bash fonts-dejavu fontconfig unzip tzdata \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + +ENV OTP_ROOT="/opt/opentripplanner" +ENV ROUTER_DATA_CONTAINER_URL="https://api.digitransit.fi/routing-data/v2/finland" + +WORKDIR ${OTP_ROOT} + +ADD run.sh ${OTP_ROOT}/run.sh +ADD target/*-shaded.jar ${OTP_ROOT}/otp-shaded.jar + +ENV PORT=8080 +EXPOSE ${PORT} +ENV ROUTER_NAME=finland +ENV JAVA_OPTS="-Xms8G -Xmx8G" + +ENTRYPOINT exec ./run.sh \ No newline at end of file diff --git a/Dockerfile.builder b/Dockerfile.builder new file mode 100644 index 00000000000..a058fac7451 --- /dev/null +++ b/Dockerfile.builder @@ -0,0 +1,18 @@ +FROM maven:3-openjdk-17 +MAINTAINER Reittiopas version: 0.1 + +RUN microdnf install curl + +ENV OTP_ROOT="/opt/opentripplanner" + +WORKDIR ${OTP_ROOT} + +ADD pom.xml ${OTP_ROOT}/pom.xml +ADD src ${OTP_ROOT}/src +ADD doc-templates ${OTP_ROOT}/doc-templates +ADD docs ${OTP_ROOT}/docs +ADD test ${OTP_ROOT}/test +add .git ${OTP_ROOT}/.git + +# Build OTP +RUN mvn package \ No newline at end of file diff --git a/run.sh b/run.sh new file mode 100755 index 00000000000..1e577cc845b --- /dev/null +++ b/run.sh @@ -0,0 +1,87 @@ +#!/bin/bash + +# Fail fast if graph building fails +set -e + +JAR=`ls *-shaded*` +echo JAR=$JAR +SLEEP_TIME=5 + +function url { + echo $ROUTER_DATA_CONTAINER_URL/$1 +} + +function build_graph { + GRAPHNAME=$1 + FILE=$2 + echo "building graph..." + DIR="graphs" + rm -rf $DIR || true + mkdir -p $DIR + unzip -o -d $DIR $FILE && rm $FILE + mv $DIR/router-$GRAPHNAME $DIR/$GRAPHNAME + java $JAVA_OPTS -jar $JAR --build --save ./$DIR/$GRAPHNAME +} + +function download_graph { + NAME=$1 + VERSION=$2 + GRAPH_FILE=graph-$NAME.zip + URL=$(url "graph-$NAME-$VERSION.zip") + echo "Downloading graph from $URL" + for i in {1..6}; do + HTTP_STATUS=$(curl --write-out %{http_code} --silent --output $GRAPH_FILE $URL) + + if [ "$HTTP_STATUS" -eq 404 ]; then + rm $GRAPH_FILE > /dev/null + echo "Graph not found" + return 1 + fi + + if [ "$HTTP_STATUS" -eq 200 ]; then break + fi + + rm $GRAPH_FILE > /dev/null + sleep $SLEEP_TIME + + done + + if [ -f graph-$NAME.zip ]; then + # if the graph already exists then overwrite it, otherwise we need to build a new one on every start + unzip -o $GRAPH_FILE -d ./graphs + SUCCESS=$? + rm $GRAPH_FILE + return $SUCCESS + else + return 1 + fi +} + +function version { + java -jar $JAR --version|grep -o -P '(?<=commit: ).*(?=,)' +} + +function process { + NAME=$1 + URL=$(url "router-$NAME.zip") + FILE="$NAME.zip" + + echo "Retrieving graph source bundle from $URL" + until curl -f -s $URL -o $FILE + do + echo "Error retrieving graph source bundle $URL from otp-data-server... retrying in $SLEEP_TIME s..." + sleep $SLEEP_TIME + done + + build_graph $NAME $FILE +} + +VERSION=$(version) + +echo VERSION $VERSION +echo ROUTER $ROUTER_NAME + +download_graph $ROUTER_NAME $VERSION || process $ROUTER_NAME + +echo "graphString is: $ROUTER_NAME" +java -Dsentry.release=$VERSION $JAVA_OPTS -Duser.timezone=Europe/Helsinki -Djava.awt.headless=true --add-exports java.desktop/sun.font=ALL-UNNAMED -jar $JAR --serve --port $PORT --load ./graphs/$ROUTER_NAME