-
Notifications
You must be signed in to change notification settings - Fork 20
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
Fixed wheel generation #216
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I beleive that it is premature to remove all these apt-get installs, as I don't think installing these via conda is working see #217 , which seems to solve the currently failing docs build.
scripts/install-deps.sh
Outdated
platform="$(uname)" | ||
|
||
if [ "${platform}" == "Linux" ]; then | ||
# sudo apt-get update -y |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# sudo apt-get update -y | |
sudo apt-get update -y |
scripts/install-deps.sh
Outdated
libparpack2-dev | ||
platform="$(uname)" | ||
|
||
if [ "${platform}" == "Linux" ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I checked in #217 it seems that commenting these install is what is breaking the generations of the docs.
I know that we wanted to install these via conda, but I don't think that is properly implemented?
scripts/install-deps.sh
Outdated
|
||
if [ "${platform}" == "Linux" ]; then | ||
# sudo apt-get update -y | ||
# sudo apt-get install -y \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# sudo apt-get install -y \ | |
sudo apt-get install -y \ |
scripts/install-deps.sh
Outdated
if [ "${platform}" == "Linux" ]; then | ||
# sudo apt-get update -y | ||
# sudo apt-get install -y \ | ||
# gfortran \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# gfortran \ | |
gfortran \ |
scripts/install-deps.sh
Outdated
# sudo apt-get update -y | ||
# sudo apt-get install -y \ | ||
# gfortran \ | ||
# openmpi-bin \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# openmpi-bin \ | |
openmpi-bin \ |
scripts/install-deps.sh
Outdated
# gfortran \ | ||
# openmpi-bin \ | ||
# openmpi-doc \ | ||
# libopenmpi-dev \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# libopenmpi-dev \ | |
libopenmpi-dev \ |
scripts/install-deps.sh
Outdated
# openmpi-bin \ | ||
# openmpi-doc \ | ||
# libopenmpi-dev \ | ||
# libopenblas-dev \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# libopenblas-dev \ | |
libopenblas-dev \ |
scripts/install-deps.sh
Outdated
# openmpi-doc \ | ||
# libopenmpi-dev \ | ||
# libopenblas-dev \ | ||
# libarpack2-dev \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# libarpack2-dev \ | |
libarpack2-dev \ |
scripts/install-deps.sh
Outdated
# libopenmpi-dev \ | ||
# libopenblas-dev \ | ||
# libarpack2-dev \ | ||
# libparpack2-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# libparpack2-dev | |
libparpack2-dev |
scripts/install-deps.sh
Outdated
# libopenblas-dev \ | ||
# libarpack2-dev \ | ||
# libparpack2-dev | ||
echo "Skipping system packages installation in favor of conda packages for building." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
echo "Skipping system packages installation in favor of conda packages for building." | |
# install these packages via conda in the future |
8f28f20
to
4a6f529
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's ready for review.
@mpmdean, if the CI runs pass - feel free to merge! We'll see if there are any issues with publishing docs as they are published only from the master
branch.
Thanks @mrakitin . The tests indeed all passed, so I will go ahead and merge this. |
I pushed a few commits to fix the docs artifact uploading/downloading business. Now it works: |
No description provided.