Skip to content

Commit

Permalink
Merge pull request #7060 from Hakuyume/chainercv-tests
Browse files Browse the repository at this point in the history
Add ChainerCV's tests to pfnCI
  • Loading branch information
kmaehashi committed Aug 5, 2019
2 parents dd424d5 + 18c31df commit 0bbeead
Showing 1 changed file with 155 additions and 0 deletions.
155 changes: 155 additions & 0 deletions .pfnci/config.pbtxt
Expand Up @@ -93,3 +93,158 @@ configs {
command: "bash .pfnci/script.sh py27and35"
}
}
configs {
key: "chainer.py2.cv"
value {
requirement {
cpu: 6
memory: 36
disk: 10
}
time_limit {
seconds: 3600
}
command: "git clone https://github.com/chainer/chainercv.git --depth 1 && sh chainercv/.pfnci/tests.sh"
environment_variables {
key: "REPOSITORY"
value: "chainer"
}
environment_variables {
key: "PYTHON"
value: "2"
}
environment_variables {
key: "OPTIONAL_MODULES"
value: "1"
}
}
}
configs {
key: "chainer.py2.cv.gpu"
value {
requirement {
cpu: 4
memory: 24
disk: 10
gpu: 1
}
command: "git clone https://github.com/chainer/chainercv.git --depth 1 && sh chainercv/.pfnci/tests_gpu.sh"
environment_variables {
key: "REPOSITORY"
value: "chainer"
}
environment_variables {
key: "PYTHON"
value: "2"
}
environment_variables {
key: "OPTIONAL_MODULES"
value: "1"
}
}
}
configs {
key: "chainer.py2.cv.examples"
value {
requirement {
cpu: 6
memory: 36
disk: 10
gpu: 2
}
time_limit {
seconds: 1800
}
command: "git clone https://github.com/chainer/chainercv.git --depth 1 && sh chainercv/.pfnci/examples_tests.sh"
environment_variables {
key: "REPOSITORY"
value: "chainer"
}
environment_variables {
key: "PYTHON"
value: "2"
}
environment_variables {
key: "OPTIONAL_MODULES"
value: "1"
}
}
}
configs {
key: "chainer.py3.cv"
value {
requirement {
cpu: 6
memory: 36
disk: 10
}
time_limit {
seconds: 3600
}
command: "git clone https://github.com/chainer/chainercv.git --depth 1 && sh chainercv/.pfnci/tests.sh"
environment_variables {
key: "REPOSITORY"
value: "chainer"
}
environment_variables {
key: "PYTHON"
value: "3"
}
environment_variables {
key: "OPTIONAL_MODULES"
value: "1"
}
}
}
configs {
key: "chainer.py3.cv.gpu"
value {
requirement {
cpu: 4
memory: 24
disk: 10
gpu: 1
}
command: "git clone https://github.com/chainer/chainercv.git --depth 1 && sh chainercv/.pfnci/tests_gpu.sh"
environment_variables {
key: "REPOSITORY"
value: "chainer"
}
environment_variables {
key: "PYTHON"
value: "3"
}
environment_variables {
key: "OPTIONAL_MODULES"
value: "1"
}
}
}
configs {
key: "chainer.py3.cv.examples"
value {
requirement {
cpu: 6
memory: 36
disk: 10
gpu: 2
}
time_limit {
seconds: 1800
}
command: "git clone https://github.com/chainer/chainercv.git --depth 1 && sh chainercv/.pfnci/examples_tests.sh"
environment_variables {
key: "REPOSITORY"
value: "chainer"
}
environment_variables {
key: "PYTHON"
value: "3"
}
environment_variables {
key: "OPTIONAL_MODULES"
value: "1"
}
}
}

0 comments on commit 0bbeead

Please sign in to comment.