Github user kxepal commented on a diff in the pull request:
https://github.com/apache/couchdb-ci/pull/1#discussion_r48251720
--- Diff: ansible/roles/ubuntu-worker/tasks/rebar.yml ---
@@ -0,0 +1,37 @@
+- name: create rebar group
+ group:
+ name: rebar
+ state: present
+
+- name: create rebar user
+ user:
+ name: rebar
+ createhome: yes
+ group: rebar
+ state: present
+
+- name: download rebar
+ get_url:
+ url: https://github.com/rebar/rebar/archive/{{ rebar_version }}.tar.gz
--- End diff --
No need in rebar: ./configure script [takes
care](https://github.com/apache/couchdb/blob/master/configure#L652-L667) about
it. While you stay with `make *` commands, it will be used and right version.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---