#!/bin/bash set -e if [ $# -ne 2 ]; then echo "run.sh " exit 1 fi REPO=$1 BRANCH=$2 . /opt/conda/etc/profile.d/conda.sh cd ~ mkdir regression cd regression # git config core.filemode false git clone --recursive https://github.com/$REPO/dgl.git git checkout $BRANCH cd dgl mkdir asv cp -r ~/asv_data/* asv/ conda activate base pip install --upgrade pip pip install asv numpy source /root/regression/dgl/tests/scripts/build_dgl.sh gpu conda activate base asv machine --yes asv run asv publish