dmlc--dgl
dd65ee211e
* change ci image * fix * force bash * fix * fix python version * fix * fix * fix * update gpu * cuda * jenkins * fix build sh * fix * Revert "fix" This reverts commit 6b091914b3ef6b4300fa662ee375aa4b27944f5c. * try fix * fix * Revert "fix" This reverts commit e42c3035fa4974c6b197aaba0748f7b45113ddaa. * try fix * fix * fix * fix * fix * fix * fix * fix tests * try fix * fix * fix * fix * fix * fix * fix * fix ctx problem * fix many tests * fix typo * add backend * move to pytorch folder * fix? * fix ci * try skip * try false * try? * try? * Revert to 7d9a52f * fix various * fix lint * Revert Jenkinsfile * revert env * revert env * address comment * remove file
20 行
688 B
Bash
20 行
688 B
Bash
#!/bin/sh
|
|
export LANG=C.UTF-8 LC_ALL=C.UTF-8
|
|
export PATH=/opt/conda/bin:$PATH
|
|
|
|
apt-get update --fix-missing && \
|
|
apt-get install -y wget bzip2 ca-certificates curl git && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh -O ~/miniconda.sh && \
|
|
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
|
|
rm ~/miniconda.sh && \
|
|
/opt/conda/bin/conda clean -tipsy && \
|
|
ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
|
|
echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
|
|
echo "conda activate base" >> ~/.bashrc
|
|
|
|
export TINI_VERSION=v0.16.1
|
|
source ~/.bashrc
|