Skip to content

Commit

Permalink
add config
Browse files Browse the repository at this point in the history
  • Loading branch information
Hakuyume committed Apr 26, 2019
1 parent 39fffb9 commit 81edd32
Showing 1 changed file with 142 additions and 0 deletions.
142 changes: 142 additions & 0 deletions .pfnci/config.pbtxt
@@ -0,0 +1,142 @@
configs {
key: "chainer.py2.cv"
value {
requirement {
cpu: 6
memory: 36
disk: 10
}
command: "git clone https://github.com/Hakuyume/chainercv.git --branch pfnci-chainer --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/Hakuyume/chainercv.git --branch pfnci-chainer --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: 4
memory: 24
disk: 10
gpu: 2
}
command: "git clone https://github.com/Hakuyume/chainercv.git --branch pfnci-chainer --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
}
command: "git clone https://github.com/Hakuyume/chainercv.git --branch pfnci-chainer --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/Hakuyume/chainercv.git --branch pfnci-chainer --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: 4
memory: 24
disk: 10
gpu: 2
}
command: "git clone https://github.com/Hakuyume/chainercv.git --branch pfnci-chainer --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 81edd32

Please sign in to comment.