Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install bintrace #46

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apt-get install -y fontconfig
RUN apt-get install -y gcc-multilib g++-multilib
RUN apt-get install -y libxkbcommon-dev libegl-dev
RUN apt-get install -y zstd
RUN apt-get install -y ninja-build ccache flatbuffers-compiler libflatbuffers-dev
RUN pip3 install "virtualenv<20" pygithub

# fix missing libreadline.so.7
Expand Down
5 changes: 4 additions & 1 deletion ci-image/conf/install.sh.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ cp $CONF/nose2.cfg .

python3 -mvirtualenv --python=`which python3` ./virtualenv
source ./virtualenv/bin/activate
pip install -U 'pip==21.3.1' 'setuptools<64'
pip install -U 'pip==21.3.1' 'setuptools<64' pybind11

pip install --no-build-isolation 'git+https://github.com/mborgerson/bintrace@abad752#egg=bintrace'
pip install --no-build-isolation 'git+https://github.com/mborgerson/bintrace@abad752#egg=bintrace-qemu&subdirectory=bintrace-qemu'

pip install --requirement ./requirements.txt --no-cache --src ./src --no-build-isolation
pip freeze > freeze.txt
Expand Down