Skip to content

Commit

Permalink
bisect
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Nov 15, 2024
1 parent 4e65862 commit 569ab99
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 6 additions & 3 deletions archlinux-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ WORKDIR /tmp

RUN sudo pacman -Syu swig python-numpy --noconfirm
RUN sudo pacman -Syu perl perl-capture-tiny perl-datetime perl-devel-cover perl-memory-process perl-gd perl-json-xs --noconfirm
RUN git clone --depth 150 -b v2.1 https://github.com/linux-test-project/lcov.git && cd lcov && sudo make PREFIX="/usr" CFG_DIR=/etc install
RUN genhtml --version
RUN git clone https://github.com/linux-test-project/lcov.git

ADD run.sh /tmp
RUN /tmp/run.sh
# RUN /tmp/run.sh

WORKDIR /tmp/lcov
RUN git bisect start v2.2 v2.1
RUN git bisect run /tmp/run.sh

5 changes: 5 additions & 0 deletions archlinux-python/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/sh
set -xe

cd /tmp/lcov
sudo make PREFIX="/usr" CFG_DIR=/etc install
genhtml --version

cd /tmp
rm -rf nlopt
git clone --depth 1 https://github.com/stevengj/nlopt.git
Expand Down

0 comments on commit 569ab99

Please sign in to comment.