diff --git a/Jenkinsfile b/Jenkinsfile index 6e6daf5c59f29dc678d4f4485ff77d7e2f257fae..cb74c77137cfcda2c72b9065a32dc7adc2e5fc69 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -107,7 +107,7 @@ def pre_test(){ make > /dev/null make install > /dev/null cd ${WKC}/tests - pip3 install ${WKC}/src/connector/python/ + pip3 install ${WKC}/src/connector/python/ || echo "not install" ''' return 1 } @@ -469,7 +469,37 @@ pipeline { } } } - + stage('arm64centos7') { + agent{label " arm64centos7 "} + steps { + pre_test() + } + } + stage('arm64centos8') { + agent{label " arm64centos8 "} + steps { + pre_test() + } + } + stage('arm32bionic') { + agent{label " arm32bionic "} + steps { + pre_test() + } + } + stage('arm64bionic') { + agent{label " arm64bionic "} + steps { + pre_test() + } + } + stage('arm64focal') { + agent{label " arm64focal "} + steps { + pre_test() + } + } + stage('build'){ agent{label " wintest "} steps {