Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added custom dockerfile for local Travis testing. #43

Merged
merged 8 commits into from
Oct 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ before_script:
- bash test/install_deps.sh
- bash test/start_mesos.sh
script:
- lein compile
- lein uberjar
#- make check
- make travis-check
jdk:
- oraclejdk8
#- oraclejdk7
Expand Down
12 changes: 12 additions & 0 deletions resources/make/test.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,15 @@ lint-ns:

check: lint
@lein with-profile +test,-dev test :all

travis-check:
bash ./test/travis.sh

local-travis-check:
bash ./test/local-travis/check.sh
bash ./test/travis.sh

local-travis:
bash ./test/local-travis/setup.sh
docker build -t meson/test ./test/local-travis
docker run -t meson/test
10 changes: 10 additions & 0 deletions test/local-travis/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM travisci/travis-jvm
MAINTAINER Clojure-Science / Clojure-Aided Enrichment Center <https://github.com/clojusc>

RUN git clone https://github.com/clojusc/meson.git
RUN cd meson && \
bash test/install_deps.sh && \
bash test/start_mesos.sh && \
cd ../

CMD ["make", "local-travis-check"]
4 changes: 4 additions & 0 deletions test/local-travis/check.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env bash

lein version
lein deps
4 changes: 4 additions & 0 deletions test/local-travis/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#/usr/bin/env bash

docker pull quay.io/travisci/travis-jvm

5 changes: 5 additions & 0 deletions test/travis.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

lein compile
lein uberjar
make check