mirror of https://github.com/milvus-io/milvus.git
[skip e2e] Update url to ci jenkins and clean old qa jenkins data (#17509)
Signed-off-by: Jenny Li <jing.li@zilliz.com>pull/17510/head
parent
440bce9d45
commit
6375a223d1
|
@ -6,7 +6,7 @@ on:
|
|||
pull_request:
|
||||
# file paths to consider in the event. Optional; defaults to all.
|
||||
paths:
|
||||
- 'build/ci/jenkins/**'
|
||||
- 'build/ci/jenkins/**.groovy'
|
||||
- '.github/workflows/jenkins-checker.yaml'
|
||||
jobs:
|
||||
check-jenkinsfile:
|
||||
|
@ -18,7 +18,7 @@ jobs:
|
|||
- name: Validate Jenkinsfile
|
||||
shell: bash
|
||||
run: |
|
||||
JENKINS_URL=https://jenkins.milvus.io:18080
|
||||
JENKINS_URL=https://ci.milvus.io:18080/jenkins
|
||||
# JENKINS_CRUMB is needed if your Jenkins controller has CRSF protection enabled as it should
|
||||
JENKINS_CRUMB=`curl "$JENKINS_URL/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,\":\",//crumb)"`
|
||||
|
||||
|
|
|
@ -1,235 +0,0 @@
|
|||
#!/usr/bin/env groovy
|
||||
|
||||
int total_timeout_minutes = 120
|
||||
int e2e_timeout_seconds = 70 * 60
|
||||
def imageTag=''
|
||||
int case_timeout_seconds = 10 * 60
|
||||
def chart_version='3.0.5'
|
||||
|
||||
pipeline {
|
||||
options {
|
||||
timeout(time: total_timeout_minutes, unit: 'MINUTES')
|
||||
buildDiscarder logRotator(artifactDaysToKeepStr: '30')
|
||||
parallelsAlwaysFailFast()
|
||||
preserveStashes(buildCount: 5)
|
||||
//Only keep the last build for one pr
|
||||
disableConcurrentBuilds(abortPrevious: true)
|
||||
|
||||
}
|
||||
agent {
|
||||
kubernetes {
|
||||
label 'milvus-qa-e2e-test-pipeline'
|
||||
inheritFrom 'default'
|
||||
defaultContainer 'main'
|
||||
yamlFile 'build/ci/jenkins/qa/pod/rte.yaml'
|
||||
customWorkspace '/home/jenkins/agent/workspace'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
PROJECT_NAME = 'milvus'
|
||||
SEMVER = "${BRANCH_NAME.contains('/') ? BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf('/') + 1) : BRANCH_NAME}"
|
||||
DOCKER_BUILDKIT = 1
|
||||
ARTIFACTS = "${env.WORKSPACE}/_artifacts"
|
||||
CI_DOCKER_CREDENTIAL_ID = "qa-ci-docker-registry"
|
||||
MILVUS_HELM_NAMESPACE = "milvus-ci"
|
||||
DISABLE_KIND = true
|
||||
HUB = 'harbor.zilliz.cc/milvus-ci'
|
||||
JENKINS_BUILD_ID = "${env.BUILD_ID}"
|
||||
CI_MODE="pr"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage ('Build'){
|
||||
steps {
|
||||
container('main') {
|
||||
dir ('build'){
|
||||
sh './set_docker_mirror.sh'
|
||||
}
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
sh 'printenv'
|
||||
def date = sh(returnStdout: true, script: 'date +%Y%m%d').trim()
|
||||
def gitShortCommit = sh(returnStdout: true, script: 'git rev-parse --short HEAD').trim()
|
||||
imageTag="${env.BRANCH_NAME}-${date}-${gitShortCommit}"
|
||||
withCredentials([usernamePassword(credentialsId: "${env.CI_DOCKER_CREDENTIAL_ID}", usernameVariable: 'CI_REGISTRY_USERNAME', passwordVariable: 'CI_REGISTRY_PASSWORD')]){
|
||||
sh """
|
||||
TAG="${imageTag}" \
|
||||
./e2e-k8s.sh \
|
||||
--skip-export-logs \
|
||||
--skip-install \
|
||||
--skip-cleanup \
|
||||
--skip-setup \
|
||||
--skip-test
|
||||
"""
|
||||
|
||||
// stash imageTag info for rebuild install & E2E Test only
|
||||
sh "echo ${imageTag} > imageTag.txt"
|
||||
stash includes: 'imageTag.txt', name: 'imageTag'
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
stage('Install & E2E Test') {
|
||||
matrix {
|
||||
axes {
|
||||
axis {
|
||||
name 'MILVUS_SERVER_TYPE'
|
||||
values 'standalone', 'distributed'
|
||||
}
|
||||
axis {
|
||||
name 'MILVUS_CLIENT'
|
||||
values 'pymilvus'
|
||||
}
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Install') {
|
||||
steps {
|
||||
|
||||
container('main') {
|
||||
stash includes: 'tests/**', name: 'testCode', useDefaultExcludes: false
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
sh 'printenv'
|
||||
def clusterEnabled = "false"
|
||||
if ("${MILVUS_SERVER_TYPE}" == 'distributed') {
|
||||
clusterEnabled = "true"
|
||||
}
|
||||
|
||||
if ("${MILVUS_CLIENT}" == "pymilvus") {
|
||||
if ("${imageTag}"==''){
|
||||
dir ("imageTag"){
|
||||
try{
|
||||
unstash 'imageTag'
|
||||
imageTag=sh(returnStdout: true, script: 'cat imageTag.txt | tr -d \'\n\r\'')
|
||||
}catch (e){
|
||||
print "No Image Tag info remained ,please rerun build to build new image."
|
||||
exit 1
|
||||
}
|
||||
}
|
||||
}
|
||||
withCredentials([usernamePassword(credentialsId: "${env.CI_DOCKER_CREDENTIAL_ID}", usernameVariable: 'CI_REGISTRY_USERNAME', passwordVariable: 'CI_REGISTRY_PASSWORD')]){
|
||||
sh """
|
||||
MILVUS_CLUSTER_ENABLED=${clusterEnabled} \
|
||||
TAG=${imageTag}\
|
||||
./e2e-k8s.sh \
|
||||
--skip-export-logs \
|
||||
--skip-cleanup \
|
||||
--skip-setup \
|
||||
--skip-test \
|
||||
--skip-build \
|
||||
--skip-build-image \
|
||||
--install-extra-arg "--set etcd.persistence.storageClass=local-path \
|
||||
--set minio.persistence.storageClass=local-path \
|
||||
--set etcd.metrics.enabled=false \
|
||||
--set etcd.metrics.podMonitor.enabled=false\
|
||||
--version ${chart_version} \
|
||||
-f values/pr.yaml"
|
||||
"""
|
||||
}
|
||||
} else {
|
||||
error "Error: Unsupported Milvus client: ${MILVUS_CLIENT}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('E2E Test'){
|
||||
options {
|
||||
skipDefaultCheckout()
|
||||
}
|
||||
|
||||
agent {
|
||||
kubernetes {
|
||||
label 'milvus-qa-e2e-test-pr'
|
||||
inheritFrom 'default'
|
||||
defaultContainer 'main'
|
||||
yamlFile 'build/ci/jenkins/qa/pod/rte.yaml'
|
||||
customWorkspace '/home/jenkins/agent/workspace'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
container('pytest') {
|
||||
unstash('testCode')
|
||||
script {
|
||||
sh 'ls -lah'
|
||||
}
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
def release_name=sh(returnStdout: true, script: './get_release_name.sh')
|
||||
def clusterEnabled = 'false'
|
||||
if ("${MILVUS_SERVER_TYPE}" == "distributed") {
|
||||
clusterEnabled = "true"
|
||||
}
|
||||
if ("${MILVUS_CLIENT}" == "pymilvus") {
|
||||
sh """
|
||||
MILVUS_HELM_RELEASE_NAME="${release_name}" \
|
||||
MILVUS_HELM_NAMESPACE="milvus-ci" \
|
||||
MILVUS_CLUSTER_ENABLED="${clusterEnabled}" \
|
||||
TEST_TIMEOUT="${e2e_timeout_seconds}" \
|
||||
./ci_e2e.sh "-n 6 -x --tags L0 L1 --timeout ${case_timeout_seconds}"
|
||||
"""
|
||||
|
||||
} else {
|
||||
error "Error: Unsupported Milvus client: ${MILVUS_CLIENT}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post{
|
||||
always {
|
||||
container('pytest'){
|
||||
dir("${env.ARTIFACTS}") {
|
||||
sh "tar -zcvf ${PROJECT_NAME}-${MILVUS_SERVER_TYPE}-${MILVUS_CLIENT}-pytest-logs.tar.gz /tmp/ci_logs/test --remove-files || true"
|
||||
archiveArtifacts artifacts: "${PROJECT_NAME}-${MILVUS_SERVER_TYPE}-${MILVUS_CLIENT}-pytest-logs.tar.gz ", allowEmptyArchive: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post{
|
||||
always {
|
||||
container('main') {
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
def release_name=sh(returnStdout: true, script: './get_release_name.sh')
|
||||
sh "./uninstall_milvus.sh --release-name ${release_name}"
|
||||
sh "./ci_logs.sh --log-dir /ci-logs --artifacts-name ${env.ARTIFACTS}/artifacts-${PROJECT_NAME}-${MILVUS_SERVER_TYPE}-${SEMVER}-${env.BUILD_NUMBER}-${MILVUS_CLIENT}-e2e-logs \
|
||||
--release-name ${release_name}"
|
||||
dir("${env.ARTIFACTS}") {
|
||||
archiveArtifacts artifacts: "artifacts-${PROJECT_NAME}-${MILVUS_SERVER_TYPE}-${SEMVER}-${env.BUILD_NUMBER}-${MILVUS_CLIENT}-e2e-logs.tar.gz", allowEmptyArchive: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
post{
|
||||
unsuccessful {
|
||||
container('jnlp') {
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
def authorEmail = sh(returnStdout: true, script: './get_author_email.sh ')
|
||||
emailext subject: '$DEFAULT_SUBJECT',
|
||||
body: '$DEFAULT_CONTENT',
|
||||
recipientProviders: [developers(), culprits()],
|
||||
replyTo: '$DEFAULT_REPLYTO',
|
||||
to: "${authorEmail},devops@zilliz.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,75 +0,0 @@
|
|||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
labels:
|
||||
app: milvus-e2e
|
||||
namespace: jenkins
|
||||
spec:
|
||||
enableServiceLinks: false
|
||||
containers:
|
||||
- name: main
|
||||
image: harbor.zilliz.cc/ci/krte:20211213-dcc15e9
|
||||
env:
|
||||
- name: DOCKER_IN_DOCKER_ENABLED
|
||||
value: "true"
|
||||
- name: DOCKER_VOLUME_DIRECTORY
|
||||
value: "/mnt/disk/.docker"
|
||||
tty: true
|
||||
securityContext:
|
||||
privileged: true
|
||||
args: ["cat"]
|
||||
resources:
|
||||
limits:
|
||||
cpu: "6"
|
||||
memory: 12Gi
|
||||
requests:
|
||||
cpu: "0.5"
|
||||
memory: 5Gi
|
||||
volumeMounts:
|
||||
- mountPath: /docker-graph
|
||||
name: docker-graph
|
||||
- mountPath: /var/lib/docker
|
||||
name: docker-root
|
||||
- mountPath: /lib/modules
|
||||
name: modules
|
||||
readOnly: true
|
||||
- mountPath: /sys/fs/cgroup
|
||||
name: cgroup
|
||||
- mountPath: /mnt/disk/.docker
|
||||
name: build-cache
|
||||
subPath: docker-volume
|
||||
- mountPath: /ci-logs
|
||||
name: ci-logs
|
||||
- name: pytest
|
||||
image: harbor.zilliz.cc/ci/pytest:20220209-3573c28
|
||||
resources:
|
||||
limits:
|
||||
cpu: "6"
|
||||
memory: 12Gi
|
||||
requests:
|
||||
cpu: "0.5"
|
||||
memory: 5Gi
|
||||
volumeMounts:
|
||||
- mountPath: /ci-logs
|
||||
name: ci-logs
|
||||
volumes:
|
||||
- emptyDir: {}
|
||||
name: docker-graph
|
||||
- emptyDir: {}
|
||||
name: docker-root
|
||||
- hostPath:
|
||||
path: /tmp/krte/cache
|
||||
type: DirectoryOrCreate
|
||||
name: build-cache
|
||||
- hostPath:
|
||||
path: /lib/modules
|
||||
type: Directory
|
||||
name: modules
|
||||
- hostPath:
|
||||
path: /sys/fs/cgroup
|
||||
type: Directory
|
||||
name: cgroup
|
||||
- name: ci-logs
|
||||
nfs:
|
||||
path: /volume1/ci-logs
|
||||
server: 172.16.70.249
|
Loading…
Reference in New Issue