Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Uninstall chainer after installing requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
niboshi committed Oct 7, 2019
1 parent a442c9f commit 38e5089
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ pip install --user -e cupy/
cd chainer

pip install --user -e .[jenkins]
# It's not possible to install only requirements.
# Chainer is uninstalled after the installation.
# TODO(niboshi): Use other installation tool
# (https://github.com/chainer/chainer/issues/5862)
pip uninstall -y chainer

export CUPY_DUMP_CUDA_SOURCE_ON_ERROR=1

Expand Down
5 changes: 5 additions & 0 deletions test_cpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ pip install --user -e chainer/
cd chainer

pip install --user -e .[jenkins]
# It's not possible to install only requirements.
# Chainer is uninstalled after the installation.
# TODO(niboshi): Use other installation tool
# (https://github.com/chainer/chainer/issues/5862)
pip uninstall -y chainer

export CUPY_DUMP_CUDA_SOURCE_ON_ERROR=1

Expand Down
5 changes: 5 additions & 0 deletions test_slow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ pip install --user -e cupy/
cd chainer

pip install --user -e .[jenkins]
# It's not possible to install only requirements.
# Chainer is uninstalled after the installation.
# TODO(niboshi): Use other installation tool
# (https://github.com/chainer/chainer/issues/5862)
pip uninstall -y chainer

export CUPY_DUMP_CUDA_SOURCE_ON_ERROR=1

Expand Down

0 comments on commit 38e5089

Please sign in to comment.