From 3acb3635c298241e68d36db926e3538c4841d648 Mon Sep 17 00:00:00 2001 From: wopeizl Date: Mon, 29 Apr 2019 13:49:44 +0800 Subject: [PATCH] 1. move the API check into CPU process (#17110) * 1. move the API check into CPU process 2. adjust the check order --- paddle/scripts/paddle_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/scripts/paddle_build.sh b/paddle/scripts/paddle_build.sh index 8e7408048b0..51093d859f2 100755 --- a/paddle/scripts/paddle_build.sh +++ b/paddle/scripts/paddle_build.sh @@ -950,6 +950,7 @@ function main() { cmake_gen ${PYTHON_ABI:-""} build ${parallel_number} gen_dockerfile ${PYTHON_ABI:-""} + assert_api_spec_approvals ;; test) parallel_test @@ -981,9 +982,8 @@ function main() { cicheck) cmake_gen ${PYTHON_ABI:-""} build ${parallel_number} - assert_api_not_changed ${PYTHON_ABI:-""} parallel_test - assert_api_spec_approvals + assert_api_not_changed ${PYTHON_ABI:-""} ;; cicheck_brpc) cmake_gen ${PYTHON_ABI:-""} -- GitLab