Skip to content

Instantly share code, notes, and snippets.

@jbinto
Forked from benjie/circle.yml
Created December 13, 2016 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbinto/3d73b1a1c4b19814e47863ce01685f1b to your computer and use it in GitHub Desktop.
Save jbinto/3d73b1a1c4b19814e47863ce01685f1b 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