Skip to content

Scripts for syncing the Cypher front-end from the Neo4j mono-repo to the openCypher front-end

Notifications You must be signed in to change notification settings

neo-technology/front-end-sync

Repository files navigation

front-end-sync

Scripts for syncing the Cypher front-end from the Neo4j mono-repo to the openCypher front-end. This will take all changes to the frontend in Neo4j after a certain cutoff point, and apply equivalent commits to the openCypher frontend. For this to work a previous synchronization point is needed, where both repos contained identical front-end sources. To define this point, two commits are needed, one from openCypher and one from Neo4j.

Be aware that this all fails horribly if there are no commits in neo4j, after the synchronization point, that touch the frontend. I don't know why. So, whenever you touch the synchronization point, make sure there is at least one commit afterwards that will be synchronized.

Run locally

To publish changes from neo4j to the opencypher frontend, run

./checkout-neo4j.sh
./synchronize-commits.sh
cd neo4j && mvn test && cd ..
./publish.sh
./cleanup.sh

This needs certain environment variables to be defined before running the script. In TeamCity, these are defined in the build configuration. If you want to run/test this locally. you can run the following block (or similar, depending on the actual repos/branches) before invoking the script.

# The openCypher repository:
export OPENCYPHER_REPO=openCypher/front-end.git
# This is the last commit in the openCypher frontend:
export OPENCYPHER_COMMIT=7ca11911456b6bc6e942250511cc975323225a47
# The branch in the openCypher frontend to synchronize changes to:
export OPENCYPHER_BRANCH_NAME=9.0

# The Neo4j repository:
export NEO4J_REPO=neo-technology/neo4j.git
# This is the last commit that got already synchronized previously.
# It must be a commit with frontend changes. 
export NEO4J_COMMIT=30b80fd5a1b2b57318f753bd90fa788d9ae9d09f
# The branch in the Neo4j to synchronize changes from:
export NEO4J_BRANCH_NAME=dev

Dealing with failures

If the sync job starts failing or you have a PR that you are certain/afraid it will break the sync job, this should hopefully help you. The sync job can start failing because you made changes to pom files, you changed modules or directory structures or something similar. To get it to work again, follow these steps:

  1. Pause the sync job in Team City by disabling the trigger.
  2. Delete the dependency from build to Publish frontend PR test on TeamCity This will allow other PRs to be green while you make your fixes.
  3. Merge your PR.
  4. Follow the steps above to run locally. After locating the failure:
    • Make any changes to the sync job itself necessary to reflect the new situation (e.g. there is a new module). You don't need to worry about having to deal with both the old and the new situation, since you'll be synchronizing only after this change in the future. Don't forget to push these changes to git@github.com:neo-technology/front-end-sync.git if it works.
    • Make any necessary commits to the frontend to make it work, e.g. port over any pom changes you made in neo4j. You can do this in the neo4j folder after having run ./synchronize-commits.sh so that your commit will end on top of the commits that actually broke the sync job. If it works, push your changes directly to opencypher, with ./publish.sh. Do not create merge commits! If you don't have push access to the opencypher frontend, ask one of the administrators to grant you access temporarily.
  5. Wait until there is at least one commit in neo4j that touches the frontend after the one that broke the sync job.
  6. Determine the sha1 of the last commit in neo4j that was successfully synchronized before. Determine the sha1 of the last commit in opencypher. This is likely the one you created in step 3 and pushed manually. This must not be a merge commit! Put both these shas in this readme in the Run locally section and in the Team City template.
  7. Re-enable the sync job in Team City by re-enabling the trigger.
  8. Restore the dependency from build to Publish frontend PR test on TeamCity. The dependency settings are as follows:
    New build will use the same revisions as in the dependency
    Do not run new build if there is a suitable one
    Only use successful builds from suitable ones
    On failed dependency: run build, but add problem
    On failed to start/canceled dependency: run build, but add problem
    

About

Scripts for syncing the Cypher front-end from the Neo4j mono-repo to the openCypher front-end

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages