-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes required to make the RMG-Py conda build work again. detailed description: - recipe now contains the appropriate requirements - removed macos travis-specific thing - added comments in build.sh for historical preservation of my failed efforts - other changes are the initial steps toward making the conda build work, future commits will make the build tests pass the ci runs on a self-hosted runner in the green group offices. required a specific version of conda build and libmamba to be installed (see PR of this commit for more details), currently fails tests because rmg tries to import Julia during testing. will now need to 'bury' the Julia import and make it optional, including docs updates, etc.
- Loading branch information
1 parent
4e2a941
commit af201e0
Showing
7 changed files
with
156 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
# Install RMG | ||
# conda build script | ||
# | ||
# conda executes this script during the build process to make the rmg | ||
# binary | ||
make install | ||
|
||
# lazy "install" of everything in our 'external' folder. | ||
# most of which should probably be elsewhere | ||
cp -R ${SRC_DIR}/external ${SP_DIR} | ||
# The below code does not work because the Julia programming langauge is a very interesting technical demo that is completely unfit for actual | ||
# deployment in any real world projects. | ||
# | ||
# RMG will be shipped as a pure python package, and then RMS installed by the user. | ||
# | ||
# export PYTHON=$PREFIX/bin/python | ||
# export PYTHONPATH=$SRC_DIR:$PYTHONPATH | ||
# python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()" | ||
# julia -e 'using Pkg; Pkg.add(PackageSpec(name="Functors",version="0.4.3")); Pkg.pin("Functors"); Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="for_rmg")); using ReactionMechanismSimulator' |
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
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