Skip to content

Don't Merge - Test build only. Thanks. #575

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

Closed
wants to merge 13 commits into from
Closed
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
26 changes: 21 additions & 5 deletions .jenkins/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ pip install -r $DIR/../requirements.txt
export PATH=/opt/conda/bin:$PATH
pip install sphinx==1.8.2 pandas

# Temp for testing.
pip uninstall torchvision -y
pip uninstall torch -y
pip install numpy
pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cu90/torch_nightly.html


# install awscli
# pip uninstall awscli
# pip install awscli==1.16.35
Expand All @@ -29,11 +36,20 @@ pip install -e git+git://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch
# this is a workaround to the issue.
pip install sphinx-gallery==0.3.1 tqdm matplotlib ipython pillow==4.1.1

# Install torchvision from source
git clone https://github.com/pytorch/vision --quiet
pushd vision
python setup.py install
popd

# Install torchaudio from source
# git clone https://github.com/pytorch/audio --quiet
# pushd audio
# python setup.py install
# popd
git clone https://github.com/pytorch/audio --quiet
pushd audio
python setup.py install
popd

# Install Torchtext
pip install torchtext

aws configure set default.s3.multipart_threshold 5120MB

Expand Down Expand Up @@ -185,4 +201,4 @@ else
fi

rm -rf vision
# rm -rf audio
rm -rf audio
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Refer to ./jenkins/build.sh for tutorial build instructions

sphinx
sphinx-gallery==0.3.1
tqdm
Expand Down