summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dockerfiles/ubuntu-14.042
-rw-r--r--dockerfiles/ubuntu-16.042
-rw-r--r--tests/run-test-suite/Makefile3
3 files changed, 6 insertions, 1 deletions
diff --git a/dockerfiles/ubuntu-14.04 b/dockerfiles/ubuntu-14.04
index 72d53ad..b246883 100644
--- a/dockerfiles/ubuntu-14.04
+++ b/dockerfiles/ubuntu-14.04
@@ -15,6 +15,8 @@ RUN mkdir /libyaml
COPY . /libyaml/
WORKDIR /libyaml
+ENV LD_LIBRARY_PATH=/libyaml/src/.libs
+
RUN ./bootstrap
RUN ./configure
RUN make
diff --git a/dockerfiles/ubuntu-16.04 b/dockerfiles/ubuntu-16.04
index edb51bf..5c4ee17 100644
--- a/dockerfiles/ubuntu-16.04
+++ b/dockerfiles/ubuntu-16.04
@@ -15,6 +15,8 @@ RUN mkdir /libyaml
COPY . /libyaml/
WORKDIR /libyaml
+ENV LD_LIBRARY_PATH=/libyaml/src/.libs
+
RUN ./bootstrap
RUN ./configure
RUN make
diff --git a/tests/run-test-suite/Makefile b/tests/run-test-suite/Makefile
index bdf89f6..3d39edc 100644
--- a/tests/run-test-suite/Makefile
+++ b/tests/run-test-suite/Makefile
@@ -23,7 +23,8 @@ data:
git clone $(TEST_SUITE_URL) $@ --branch=$@
%/libyaml-parser %/libyaml-emitter: %
- (cd $<; make build)
+ (cd $<; make clean build)
+ (cd $<; make clean build)
libyaml-parser-emitter:
git clone $(GITHUB_ORG_URI)/$@ $@