GitHub user iilyak opened a pull request:
https://github.com/apache/couchdb-ci/pull/5
Add Elixir dependency
There is an [ongoing work](https://github.com/apache/couchdb/pull/1406) to
port JS test suite to Elixir. This PR adds Elixir as a dependency
# Testing recommendation
```
./build platform-all
for image in `docker images 'couchdbdev\/*' --format="{{.Repository}}"`; do
echo "Checking ${image}..."
docker run -t ${image} elixir --version | grep 'compiled with' && echo
OK
done
```
The example of output:
```
Checking couchdbdev/centos-6-erlang-19.3.6...
Elixir 1.6.6 (compiled with OTP 19)
OK
Checking couchdbdev/ubuntu-bionic-erlang-19.3.6...
Elixir 1.6.6 (compiled with OTP 19)
OK
Checking couchdbdev/ubuntu-xenial-erlang-19.3.6...
Elixir 1.6.6 (compiled with OTP 19)
OK
Checking couchdbdev/ubuntu-trusty-erlang-19.3.6...
Elixir 1.6.6 (compiled with OTP 19)
OK
Checking couchdbdev/debian-stretch-erlang-19.3.6...
Elixir 1.6.6 (compiled with OTP 19)
OK
Checking couchdbdev/debian-jessie-erlang-19.3.6...
Elixir 1.6.6 (compiled with OTP 19)
OK
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/cloudant/couchdb-ci add-elixir
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/couchdb-ci/pull/5.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #5
----
commit b9ad1f2a717be5ea0f1b07b18fca26f73788473f
Author: ILYA Khlopotov <iilyak@...>
Date: 2018-07-25T17:00:21Z
Add Elixir dependency
----
---