aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-08-13 01:42:51 -0400
committerZachary Scott <e@zzak.io>2015-08-13 01:42:51 -0400
commit9106ecb0531a9f8ec5e14098226407b063781a91 (patch)
tree68a0f031f531d4f7fb3929e6b17a7398c2fd789d /docker-compose.yml
parent2e3e2d1260c29f3b5956f2dc86022f9320ea96d2 (diff)
downloadruby-openssl-9106ecb0531a9f8ec5e14098226407b063781a91.tar.gz
Add support for running tests in ruby-openssl-docker container
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..ba1937ae
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,11 @@
+compile: &defaults
+ build: .
+ volumes:
+ - .:/home/openssl/code:rw
+ environment:
+ RUBY_VERSION:
+ OPENSSL_VERSION:
+ command: bundle exec rake compile
+test:
+ <<: *defaults
+ command: bundle exec rake test