Skip to content

Commit

Permalink
fix(jenkins): remove test for torch 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ClowDragon committed Feb 18, 2024
1 parent baeb4dd commit c65692c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .jenkins/pipeline/daily.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ cnpipe {
depth 1
}

// 获取torch1.9 daily docker
def docker_image_19 = package.properties("http://daily.software.cambricon.com/daily/pytorch/docker/catch_1.9_develop/ubuntu20.04/3.7/latest").get("docker")
// 获取torch1.13 daily docker
def docker_image_113 = package.properties("http://daily.software.cambricon.com/daily/pytorch/docker/catch_1.13.1_develop/ubuntu20.04/3.10/latest").get("docker")
// 获取torch2.1 daily docker
Expand All @@ -22,7 +20,6 @@ cnpipe {
docker_image = this.DOCKER_IMAGE
}
// 运行单元测试
task('run_unit_test_catch_1.9', unit_test(docker_image_19))
task('run_unit_test_catch_1.13', unit_test(docker_image_113))
task('run_unit_test_catch_2.1', unit_test(docker_image_210))
}
Expand Down
3 changes: 0 additions & 3 deletions .jenkins/pipeline/precheckin.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ cnpipe {
checkUTReport false
checkMRUpvotes false
uploadTestResult 'master', false
// 获取torch1.9 daily docker
def docker_image_19 = package.properties("http://daily.software.cambricon.com/daily/pytorch/docker/catch_1.9_develop/ubuntu20.04/3.7/latest").get("docker")
// 获取torch1.13 daily docker
def docker_image_113 = package.properties("http://daily.software.cambricon.com/daily/pytorch/docker/catch_1.13.1_develop/ubuntu20.04/3.10/latest").get("docker")
// 获取torch2.1 daily docker
def docker_image_210 = package.properties("http://daily.software.cambricon.com/daily/pytorch/docker/master/ubuntu20.04/3.10/latest").get("docker")
// 运行单元测试
task('run_unit_test_catch_1.9', unit_test(docker_image_19))
task('run_unit_test_catch_1.13', unit_test(docker_image_113))
task('run_unit_test_catch_2.1', unit_test(docker_image_210))
}
Expand Down

0 comments on commit c65692c

Please sign in to comment.