Skip to content
Snippets Groups Projects
Commit 0309c1ea authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- bugfix, missed "git checkout" commands :(

parent ed9c7f8b
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,7 @@ RUN git clone https://github.com/SLUB-digitalpreservation/checkit_tiff.git
RUN rm -Rf /home/builder/checkit_tiff/build_*
# compile checkit_tiff stable
WORKDIR /home/builder/checkit_tiff
RUN git checkout master
RUN mkdir build_stable
WORKDIR /home/builder/checkit_tiff/build_stable
RUN cmake -DCMAKE_INSTALL_PREFIX=/tmp/checkit_tiff_stable/ \
......@@ -62,6 +63,7 @@ RUN make && make install
# compile checkit_tiff development
WORKDIR /home/builder/checkit_tiff
RUN git checkout development
RUN mkdir build_development
WORKDIR /home/builder/checkit_tiff/build_development
RUN cmake -DCMAKE_INSTALL_PREFIX=/tmp/checkit_tiff_development/ \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment