Skip to content
Snippets Groups Projects
Commit 08eb38ce authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

manylinux: details

parent d36d8ef1
No related branches found
No related tags found
No related merge requests found
#!/bin/bash -eux #!/bin/bash -eux
docker build -t manylinux . docker build -t manylinux .
docker run -v "$(pwd -P):/io" --rm -t manylinux rm -rf /io/dist /io/wheelhouse docker run -v "$(pwd -P):/io" -v /local/users/ccache/:/root/.ccache --rm -t manylinux rm -rf /io/dist /io/wheelhouse
docker run -v "$(pwd -P):/io" --rm -t manylinux /scripts/setup.sh eigenpy docker run -v "$(pwd -P):/io" -v /local/users/ccache/:/root/.ccache --rm -t manylinux /scripts/setup.sh eigenpy
docker run -v "$(pwd -P):/io" --rm -t manylinux /scripts/setup.sh hpp-fcl docker run -v "$(pwd -P):/io" -v /local/users/ccache/:/root/.ccache --rm -t manylinux /scripts/setup.sh hpp-fcl
docker run -v "$(pwd -P):/io" --rm -t manylinux /scripts/setup.sh pinocchio docker run -v "$(pwd -P):/io" -v /local/users/ccache/:/root/.ccache --rm -t manylinux /scripts/setup.sh pinocchio
clear
for PYVER in 2.7 3.5 3.6 3.7 3.8 3.9 for PYVER in 2.7 3.5 3.6 3.7 3.8 3.9
do do
docker build -f test.Dockerfile --build-arg PYVER=$PYVER -t manylinux-test:$PYVER . docker build -f test.Dockerfile --build-arg PYVER=$PYVER -t manylinux-test:$PYVER .
......
ARG PYVER=3.7 ARG PYVER=3.7
FROM python:$PYVER FROM python:$PYVER
RUN apt-get update -qqy && apt-get install -qqy libgl1 && rm -rf /var/lib/apt/lists/* RUN apt-get update -qqy && apt-get install -qqy libgl1 && rm -rf /var/lib/apt/lists/* && pip install --no-cache-dir numpy
ADD dist config test.sh / ADD dist config test.sh /
CMD /test.sh CMD /test.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment