470
edits
| Line 65: | Line 65: | ||
exit | exit | ||
== | == helper script to populate /builds == | ||
#!/bin/sh -x | |||
if [ ! -d /builds ]; then | |||
mkdir /builds | |||
fi | |||
if [ ! -d /builds/talos-data ]; then | |||
mkdir /builds/talos-data | |||
cd /builds/talos-data | |||
hg clone http://hg.mozilla.org/users/tglek_mozilla.com/fennecmark bench@tara.glek | |||
hg clone http://hg.mozilla.org/build/pageloader pageloader@mozilla.org | |||
hg clone http://hg.mozilla.org/build/talos talos | |||
fi | |||
if [ ! -d /builds/tools ]; then | |||
cd /builds | |||
hg clone http://hg.mozilla.org/build/tools | |||
cd /builds/tools/sut_tools | |||
ln -s /builds/talos-data/talos/devicemanager.py . | |||
fi | |||
if [ ! -d /builds/sut_tools ]; then | |||
cd /builds | |||
ln -s /builds/tools/sut_tools sut_tools | |||
fi | |||
cd /builds | cd /builds | ||
== helper script to create/populate tegra dirs == | == helper script to create/populate tegra dirs == | ||
edits