Skip to content

Instantly share code, notes, and snippets.

@benjie
Last active December 13, 2016 01:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save benjie/588376004859b3699a6a181379e87f77 to your computer and use it in GitHub Desktop.
Save benjie/588376004859b3699a6a181379e87f77 to your computer and use it in GitHub Desktop.
Getting PLv8 to run on Postgresql 9.5 on CircleCI (Ubuntu 14.04)
dependencies:
pre:
- sudo apt-get update
- sudo pip install pgxnclient
- sudo apt-get install libpq-dev libv8-dev postgresql-server-dev-9.5
- sudo pgxn install 'plv8=1.4.4'
# Just to be 100% certian you are using 9.5, and save a bit of memory.
- sudo service postgresql stop 9.4
- sudo service postgresql restart 9.5
# TODO: caching
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment