forked from AndySomogyi/sbmlsolver
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1082 from sys-bio/develop
Release 2.3.2
- Loading branch information
Showing
162 changed files
with
1,661 additions
and
1,126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This dockerfile contains commands for a base environment suitable for | ||
# building manylinux pip wheels. | ||
# The default gcc/g++ is 9.3 | ||
# Conda is used to manage Python versions. | ||
# | ||
# This dockerfile installs roadrunner dependencies and llvm package | ||
# But does not build roadrunner, which is the subject of another dockerfile | ||
|
||
FROM sysbiouw/roadrunner-manylinux2014-base | ||
|
||
#RUN git clone https://github.com/sys-bio/llvm-13.x.git \ | ||
# && cd llvm-13.x | ||
#RUN cd /llvm-13.x/llvm && mkdir build && cd build \ | ||
# && cmake -DCMAKE_INSTALL_PREFIX=/install-llvm-13.x -DCMAKE_BUILD_TYPE=Release .. | ||
#RUN cd /llvm-13.x/llvm/build \ | ||
# && cmake --build . --target install --config Release -j 12 | ||
#RUN rm -rf /llvm-13.x | ||
# | ||
#RUN git clone https://github.com/sys-bio/libroadrunner-deps.git --recurse-submodules | ||
#RUN cd libroadrunner-deps && mkdir build && cd build \ | ||
# && cmake -DCMAKE_INSTALL_PREFIX=../install-libroadrunner-deps -DCMAKE_BUILD_TYPE=Release .. \ | ||
# && cmake --build . --target install --config Release -j 12 | ||
|
||
#Run above to re-create build; for now, just use pre-built: | ||
|
||
RUN wget https://github.com/sys-bio/llvm-13.x/releases/download/llvmorg-13.0.0/llvm-13.x-manylinux2014.tgz \ | ||
&& tar -xvf llvm-13.x-manylinux2014.tgz \ | ||
&& rm llvm-13.x-manylinux2014.tgz | ||
|
||
RUN wget https://github.com/sys-bio/libroadrunner-deps/releases/download/v2.1/libroadrunner-deps-manylinux2014-Release.zip \ | ||
&& unzip libroadrunner-deps-manylinux2014-Release.zip \ | ||
&& rm libroadrunner-deps-manylinux2014-Release.zip \ | ||
&& mv libroadrunner-deps-manylinux2014-Release/install-azure/Release install-libroadrunner-deps | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This dockerfile contains commands for a base environment suitable for | ||
# building manylinux pip wheels. | ||
# The default gcc/g++ is 9.3 | ||
# Conda is used to manage Python versions. | ||
# | ||
# This dockerfile installs roadrunner dependencies and llvm package | ||
# But does not build roadrunner, which is the subject of another dockerfile | ||
|
||
FROM sysbiouw/roadrunner-manylinux2014-add-deps | ||
|
||
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
RUN bash Miniconda3-latest-Linux-x86_64.sh -b -p /Miniconda3 | ||
|
||
RUN /Miniconda3/bin/conda create -y --name py38 python=3.8 pytest | ||
RUN /Miniconda3/bin/conda create -y --name py39 python=3.9 pytest | ||
RUN /Miniconda3/bin/conda create -y --name py310 python=3.10 pytest | ||
RUN /Miniconda3/bin/conda create -y --name py311 python=3.11 pytest -c conda-forge | ||
|
||
RUN /Miniconda3/bin/conda init && bash ~/.bashrc && . ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.