Bug 1882457 - Update the release process docs for the monorepo migration. r=ahal...
[gecko.git] / taskcluster / docker / recipes / ubuntu1804-test-system-setup.sh
blobe22b21f51d37e6bb4ee6b5f7a8fc0014c91f4c31
1 #!/usr/bin/env bash
3 set -ve
5 test "$(whoami)" == 'root'
7 cd /setup
9 # Install tooltool and node now that dependencies are in place.
10 . /setup/common.sh
11 . /setup/install-node.sh
13 # Upgrade pip and install virtualenv to specified versions.
14 pip install --upgrade pip==19.2.3
15 hash -r
16 pip install virtualenv==15.2.0
18 pip3 install -r /setup/psutil_requirements.txt
19 pip install -r /setup/psutil_requirements.txt
21 # Cleanup
22 cd /
23 rm -rf /setup ~/.ccache ~/.cache ~/.npm
24 rm -f "$0"