comparison deploy/linux/docker/Dockerfile_appimage.in @ 374:0263e55b68bb

Build example plugins & test plugins so as to run tests
author Chris Cannam
date Fri, 05 Jun 2020 11:56:38 +0100
parents 5fafd07e86d7
children a296bbde0861
comparison
equal deleted inserted replaced
373:5fafd07e86d7 374:0263e55b68bb
42 ENV LANG en_US.UTF-8 42 ENV LANG en_US.UTF-8
43 ENV LANGUAGE en_US:en 43 ENV LANGUAGE en_US:en
44 ENV LC_ALL en_US.UTF-8 44 ENV LC_ALL en_US.UTF-8
45 45
46 RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/sonic-annotator 46 RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/sonic-annotator
47 RUN hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk
48 RUN hg clone https://code.soundsoftware.ac.uk/hg/vamp-test-plugin
49
50 WORKDIR /vamp-plugin-sdk
51 RUN ./configure --disable-programs
52 RUN make plugins
53
54 WORKDIR /vamp-test-plugin
55 RUN make -f Makefile.linux
56
57 ENV VAMP_PATH /vamp-plugin-sdk/examples:/vamp-test-plugin
47 58
48 RUN git config --global http.postBuffer 4M 59 RUN git config --global http.postBuffer 4M
49 60
50 WORKDIR /root 61 WORKDIR /root
51 62