Skip to content
Prev Previous commit
Next Next commit
install dependencies
  • Loading branch information
dragarcia committed Mar 3, 2022
commit 010f5e4f9a1a457ce1387d75d269751664595769
9 changes: 9 additions & 0 deletions ansible/tasks/postgres-extensions/19-pg_graphql.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# pg_graphql
- name: pg_graphql - download & install dependencies
apt:
pkg:
- clang-11
- build-essential
- python
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

python2 is a dependency for installing libgraphqlparser. It shouldn't be required by pg_graphql. did it cause an issue for you?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, this is more of a catch all for all packages that would be used by the extension and any other dependencies.

update_cache: yes
install_recommends: no

- name: pg_graphql - download libgraphqlparser
git:
repo: https://github.com/graphql/libgraphqlparser.git
Expand Down