summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIngy döt Net <ingy@ingy.net>2016-12-30 15:54:54 -0600
committerIngy döt Net <ingy@ingy.net>2016-12-30 15:54:54 -0600
commit048095f030bdd05276e5b1c6d9f954f367aa0022 (patch)
tree264457e4ae8025785c2980010553f5c0f64902b6 /tests
parenta672b0710919287ffbede8594c47aade35dd5874 (diff)
downloadlibyaml-git-048095f030bdd05276e5b1c6d9f954f367aa0022.tar.gz
Get tests passing on Docker
The Dockerfiles needed to set LD_LIBRARY_PATH. For some bizarre reason I needed to build the parser and emitter twice. Since I plan to redo the building of these binaries later, this is OK for now, since all tests on all CICDs will pass. The docker stuff was needed by the semaphoreci system.
Diffstat (limited to 'tests')
-rw-r--r--tests/run-test-suite/Makefile3
1 files changed, 2 insertions, 1 deletions
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)/$@ $@