Unverified Commit 5640b129 authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[CI] Upgrade software version of CI docker image (#4189)


Co-authored-by: default avatarMinjie Wang <wmjlyjemaine@gmail.com>
parent 1dddaad4
...@@ -206,7 +206,7 @@ pipeline { ...@@ -206,7 +206,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-cpu-node" label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:cu101_v220217" image "dgllib/dgl-ci-cpu:cu101_v220629"
args "-u root" args "-u root"
alwaysPull true alwaysPull true
} }
...@@ -224,7 +224,7 @@ pipeline { ...@@ -224,7 +224,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-cpu-node" label "linux-cpu-node"
image "dgllib/dgl-ci-gpu:cu101_v220217" image "dgllib/dgl-ci-gpu:cu101_v220629"
args "-u root" args "-u root"
alwaysPull true alwaysPull true
} }
...@@ -261,7 +261,7 @@ pipeline { ...@@ -261,7 +261,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-cpu-node" label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:cu101_v220217" image "dgllib/dgl-ci-cpu:cu101_v220629"
alwaysPull true alwaysPull true
} }
} }
...@@ -278,7 +278,7 @@ pipeline { ...@@ -278,7 +278,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-gpu-node" label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu101_v220217" image "dgllib/dgl-ci-gpu:cu101_v220629"
args "--runtime nvidia" args "--runtime nvidia"
alwaysPull true alwaysPull true
} }
...@@ -307,7 +307,7 @@ pipeline { ...@@ -307,7 +307,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-cpu-node" label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:cu101_v220217" image "dgllib/dgl-ci-cpu:cu101_v220629"
alwaysPull true alwaysPull true
} }
} }
...@@ -328,7 +328,7 @@ pipeline { ...@@ -328,7 +328,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-gpu-node" label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu101_v220217" image "dgllib/dgl-ci-gpu:cu101_v220629"
args "--runtime nvidia" args "--runtime nvidia"
alwaysPull true alwaysPull true
} }
...@@ -350,7 +350,7 @@ pipeline { ...@@ -350,7 +350,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-cpu-node" label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:cu101_v220217" image "dgllib/dgl-ci-cpu:cu101_v220629"
args "--shm-size=4gb" args "--shm-size=4gb"
alwaysPull true alwaysPull true
} }
...@@ -407,7 +407,7 @@ pipeline { ...@@ -407,7 +407,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-gpu-node" label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu101_v220217" image "dgllib/dgl-ci-gpu:cu101_v220629"
args "--runtime nvidia --shm-size=8gb" args "--runtime nvidia --shm-size=8gb"
alwaysPull true alwaysPull true
} }
...@@ -435,7 +435,7 @@ pipeline { ...@@ -435,7 +435,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-cpu-node" label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:cu101_v220217" image "dgllib/dgl-ci-cpu:cu101_v220629"
alwaysPull true alwaysPull true
} }
} }
...@@ -461,7 +461,7 @@ pipeline { ...@@ -461,7 +461,7 @@ pipeline {
agent { agent {
docker { docker {
label "linux-gpu-node" label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu101_v220217" image "dgllib/dgl-ci-gpu:cu101_v220629"
args "--runtime nvidia" args "--runtime nvidia"
alwaysPull true alwaysPull true
} }
......
# CI docker CPU env # CI docker CPU env
# Adapted from github.com/dmlc/tvm/docker/Dockerfile.ci_cpu # Adapted from github.com/dmlc/tvm/docker/Dockerfile.ci_cpu
FROM ubuntu:16.04 FROM ubuntu:18.04
ENV TZ=US
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update --fix-missing RUN apt-get update --fix-missing
......
# CI docker GPU env # CI docker GPU env
FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu16.04 FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
ENV TZ=US
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update --fix-missing RUN apt-get update --fix-missing
......
...@@ -3,7 +3,7 @@ dependencies: ...@@ -3,7 +3,7 @@ dependencies:
- python=3.6.9 - python=3.6.9
- pip - pip
- pip: - pip:
- tensorflow==2.2.0 - tensorflow==2.3.0
- tfdlpack - tfdlpack
- pytest - pytest
- nose - nose
......
...@@ -3,7 +3,7 @@ dependencies: ...@@ -3,7 +3,7 @@ dependencies:
- python=3.6.9 - python=3.6.9
- pip - pip
- pip: - pip:
- tensorflow==2.2.0 - tensorflow==2.3.0
- tfdlpack-gpu - tfdlpack-gpu
- pytest - pytest
- nose - nose
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment