mailweb.openeuler.org
Manage this list

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Compass-ci

Threads by month
  • ----- 2025 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
compass-ci@openeuler.org

October 2020

  • 31 participants
  • 682 discussions
[PATCH compass-ci] fix: sched: use testbox to find and submit idle jobs
by Ren Wen 14 Oct '20

14 Oct '20
Use testbox to find and submit idle jobs because of different types of physical machines have different jobs. Before: find and submit idle jobs using tbox_group queues. Now: find and submit using testbox queues. Signed-off-by: Ren Wen <15991987063(a)163.com> --- src/lib/sched.cr | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/lib/sched.cr b/src/lib/sched.cr index 2fbf05d..a61a57b 100644 --- a/src/lib/sched.cr +++ b/src/lib/sched.cr @@ -432,7 +432,7 @@ class Sched # when find no job at "sched/#{tbox_group}" # try to get from "sched/#{tbox_group}/idle" - return get_idle_job(tbox_group, testbox) + return get_idle_job(tbox, testbox) end private def prepare_job(queue_name, testbox) @@ -457,20 +457,21 @@ class Sched return job end - private def get_idle_job(tbox_group, testbox) - job = prepare_job("sched/#{tbox_group}/idle", testbox) + private def get_idle_job(tbox, testbox) + queue_name = "sched/#{tbox}/idle" + job = prepare_job(queue_name, testbox) # if there has no idle job, auto submit and get 1 if job.nil? - auto_submit_idle_job(tbox_group) - job = prepare_job("sched/#{tbox_group}/idle", testbox) + auto_submit_idle_job(tbox) + job = prepare_job(queue_name, testbox) end return job end - def auto_submit_idle_job(tbox_group) - full_path_patterns = "#{ENV["CCI_REPOS"]}/lab-#{ENV["lab"]}/allot/idle/#{tbox_group}/*.yaml" + def auto_submit_idle_job(tbox) + full_path_patterns = "#{ENV["CCI_REPOS"]}/lab-#{ENV["lab"]}/allot/idle/#{tbox}/*.yaml" extra_job_fields = [ "idle_job=true", "FLUENTD_SERVER_HOST=#{ENV["FLUENTD_SERVER_HOST"]}", @@ -479,7 +480,7 @@ class Sched Jobfile::Operate.auto_submit_job( full_path_patterns, - "testbox: #{tbox_group}", + "testbox: #{tbox}", extra_job_fields) if Dir.glob(full_path_patterns).size > 0 end -- 2.23.0
3 4
0 0
[PATCH lkp-tests] /lkp-tests/pkg: add PKGBUILD for test-tools
by Li Ping 14 Oct '20

14 Oct '20
Signed-off-by: Li Ping <15396232681(a)163.com> --- pkg/test-tools/PKGBUILD | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkg/test-tools/PKGBUILD diff --git a/pkg/test-tools/PKGBUILD b/pkg/test-tools/PKGBUILD new file mode 100644 index 00000000..3335a67c --- /dev/null +++ b/pkg/test-tools/PKGBUILD @@ -0,0 +1,19 @@ +pkgname=test-tools +pkgver=git +pkgrel=1 +pkgdesc="smoke test" +url="https://gitee.com/openeuler/test-tools.git" +arch=aarch64 +license=('GPL') +source=("https://gitee.com/openeuler/test-tools.git" + "https://gitee.com/openeuler/integration-test.git" +) +md5sums=('SKIP' 'SKIP') + +package() { + test_tools_path="${pkgdir}/lkp/benchmarks/${pkgname}" + mkdir -p "${test_tools_path}" + cp -af "${srcdir}/test-tools/"* "${test_tools_path}" + cp -af "${srcdir}/integration-test/testcases" "${test_tools_path}/mugen" + cp -af "${srcdir}/integration-test/suite2cases" "${test_tools_path}/mugen" +} -- 2.23.0
2 1
0 0
[PATCH v2 compass-ci 2/2] container/extract-stats add 'SRV_HTTP_HOST/PORT' in environment variables
by Lu Weitao 14 Oct '20

14 Oct '20
background: extract-stats service use mail-job tool that need get SRV_HTTP_HOST/PORT from ENV for display job result url in email Signed-off-by: Lu Weitao <luweitaobe(a)163.com> --- container/extract-stats/start | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/container/extract-stats/start b/container/extract-stats/start index 6bb9f10..e5ee777 100755 --- a/container/extract-stats/start +++ b/container/extract-stats/start @@ -4,6 +4,7 @@ # frozen_string_literal: true require 'set' +require 'open3' require_relative '../defconfig.rb' names = Set.new %w[ @@ -25,6 +26,8 @@ DEFAULT_LKP = '/c/lkp-tests' DEFAULT_CCI = '/c/compass-ci' FLUENTD_HOST = defaults['FLUENTD_HOST'] || '172.17.0.1' FLUENTD_PORT = defaults['FLUENTD_PORT'] || '24224' +SRV_HTTP_HOST = defaults['SRV_HTTP_HOST'] || Open3.capture3('curl ip.sb')[0].chomp +SRV_HTTP_PORT = defaults['SRV_HTTP_PORT'] || '11300' docker_rm "extract-stats" cmd = %w[ @@ -35,6 +38,8 @@ cmd = %w[ ] + env + %W[ -e LKP_SRC=#{DEFAULT_LKP} -e CCI_SRC=#{DEFAULT_CCI} + -e SRV_HTTP_HOST=#{SRV_HTTP_HOST} + -e SRV_HTTP_PORT=#{SRV_HTTP_PORT} -v #{ENV['LKP_SRC']}:#{DEFAULT_LKP} -v /etc/localtime:/etc/localtime:ro -v #{ENV['CCI_SRC']}:#{DEFAULT_CCI} -- 2.23.0
1 0
0 0
[PATCH v2 compass-ci 1/2] add job result url with mail-job
by Lu Weitao 14 Oct '20

14 Oct '20
sample: mail-job crystal.92144 Date: Mon, Oct 12 2020 17:30:56PM +0800 From: team(a)crystal.ci To: lwt(a)crystal.ci Subject: [Compass-ci] job: crystal.92144 result Hi, Thanks for your participation in Kunpeng and software ecosystem! Your Job: crystal.92144 had finished. Please check job result: http://172.17.0.1:11300/result/iperf/vm-hi1620-2p8g--lwt/2020-10-12/crystal… Regards Compass-ci https://gitee.com/openeuler/compass-ci Signed-off-by: Lu Weitao <luweitaobe(a)163.com> --- lib/constants.rb | 5 ++++- lib/mail_job_result.rb | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/constants.rb b/lib/constants.rb index 3a4f083..3d1ef1d 100644 --- a/lib/constants.rb +++ b/lib/constants.rb @@ -9,4 +9,7 @@ ES_HOST = config['ES_HOST'] || '172.17.0.1' ES_PORT = config['ES_PORT'] || 9200 MAIL_HOST = config['MAIL_HOST'] || '172.17.0.1' -MAIL_PORT = config['MAIL_PORT'] || 11_311 +MAIL_PORT = config['MAIL_PORT'] || 11311 + +SRV_HTTP_HOST = config['SRV_HTTP_HOST'] || ENV['SRV_HTTP_HOST'] || '172.17.0.1' +SRV_HTTP_PORT = config['SRV_HTTP_PORT'] || ENV['SRV_HTTP_PORT'] || 11300 diff --git a/lib/mail_job_result.rb b/lib/mail_job_result.rb index 9202b81..29a9c1a 100644 --- a/lib/mail_job_result.rb +++ b/lib/mail_job_result.rb @@ -9,8 +9,10 @@ require 'json' # compose and send email for job result class MailJobResult - def initialize(job_id) + def initialize(job_id, result_host = SRV_HTTP_HOST, result_port = SRV_HTTP_PORT) @job_id = job_id + @result_host = result_host + @result_port = result_port end def send_mail @@ -25,7 +27,7 @@ class MailJobResult body = "Hi, Thanks for your participation in Kunpeng and software ecosystem! Your Job: #{@job_id} had finished. - Please check job result: \n\n#{signature}" + Please check job result: http://#{@result_host}:#{@result_port}#{@result_root}\n\n#{signature}" { 'to' => @submitter_email, 'body' => body, 'subject' => subject } end @@ -34,6 +36,7 @@ class MailJobResult exit unless job['email'] @submitter_email = job['email'] + @result_root = job['result_root'] end def query_job -- 2.23.0
1 0
0 0
[PATCH v6 compass-ci 5/6] container/mail-robot: start file
by Luan Shengde 14 Oct '20

14 Oct '20
Signed-off-by: Luan Shengde <luanshengde2(a)huawei.com> --- container/mail-robot/start | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 container/mail-robot/start diff --git a/container/mail-robot/start b/container/mail-robot/start new file mode 100755 index 0000000..a2e183d --- /dev/null +++ b/container/mail-robot/start @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved. +# frozen_string_literal: true + +require_relative '../defconfig.rb' +docker_rm 'mail-robot' + +JUMPER_IP = '192.168.132.2' +JUMPER_PORT = '29999' +SEND_MAIL_PORT = '11311' + +cmd = %W[ + docker run + --restart=always + --name=mail-robot + -d + -e JUMPER_IP=#{JUMPER_IP} + -e JUMPER_PORT=#{JUMPER_PORT} + -e SEND_MAIL_PORT=#{SEND_MAIL_PORT} + -v /c/upstream-repos:/upstream-repos:ro + -v /srv/cci/Maildir:/Maildir:rw + -v /c/compass-ci:/compass-ci:ro + mail-robot +] + +cmd += ['bash', '-c', 'umask 002 && ruby ./mail-robot.rb'] + +system(*cmd) -- 2.23.0
2 3
0 0
[PATCH v2 compass-ci 5/5] container/send-internet-mail: start file
by Luan Shengde 14 Oct '20

14 Oct '20
Signed-off-by: Luan Shengde <luanshengde2(a)huawei.com> --- container/send-internet-mail/start | 54 ++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100755 container/send-internet-mail/start diff --git a/container/send-internet-mail/start b/container/send-internet-mail/start new file mode 100755 index 0000000..ef9b987 --- /dev/null +++ b/container/send-internet-mail/start @@ -0,0 +1,54 @@ +#!/bin/bash +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved. + +. /c/compass-ci/container/defconfig.sh +docker_rm send-internet-mail + +cmd=( + docker run + --restart=always + --name=send-internet-mail + -d + -p 11312:11312 + -v /etc/localtime:/etc/localtime:ro + send-internet-mail +) + +"${cmd[@]}" + +cat<<EOF +port: 11312 +--- + +No need to specify the sender + +data='{ +"subject": "email subject", +"to": "email_to_addr", +"body": "email message" +}' + +or + +data=" +subject: email subject +to: email_to_addr +body: email message" + +command: + curl -XPOST 'service_server_ip:service_port/send_mail_yaml' -d "\$data" + +--- +data=" +To: email_to_addr +Subject: email_subject + +mail_msg_line1 +mail_msg_line2 +... +" + +command: + curl -XPOST 'service_server_ip:service_port/send_mail_text' -d "\$data" +EOF -- 2.23.0
2 2
0 0
[PATCH v2 compass-ci] git_mirror: fix git-remote-http <defunct>
by Li Yuanchao 14 Oct '20

14 Oct '20
when use system() or %x() call shell command git, there would be a new child process to do git command. And it seems the child process doesn't clear everytime when it's finished. It needs to be waited by parent process. But it often comes out 'no child' error when wait in main thread, so I trap SIGCHLD to SIG_IGN, and the init process will handle it. Signed-off-by: Li Yuanchao <lyc163mail(a)163.com> --- lib/git_mirror.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/git_mirror.rb b/lib/git_mirror.rb index 88a94ac..4ab5e32 100644 --- a/lib/git_mirror.rb +++ b/lib/git_mirror.rb @@ -45,8 +45,8 @@ class GitMirror def git_fetch(mirror_dir) fetch_info = %x(git -C #{mirror_dir} fetch 2>&1) - # Check whether mirror_dir is a good git repository by 3 conditions. If not, delete it. - if ($CHILD_STATUS.exitstatus == ERR_CODE) && fetch_info.include?(ERR_MESSAGE) && Dir.empty?(mirror_dir) + # Check whether mirror_dir is a good git repository by 2 conditions. If not, delete it. + if fetch_info.include?(ERR_MESSAGE) && Dir.empty?(mirror_dir) FileUtils.rmdir(mirror_dir) end return fetch_info.include? '->' @@ -89,6 +89,7 @@ class MirrorMain connection.start channel = connection.create_channel @message_queue = channel.queue('new_refs') + Signal.trap(:SIGCHLD, 'SIG_IGN') end def fork_stat_init(stat_key) -- 2.23.0
1 0
0 0
[PATCH compass-ci] add two field to config local repository
by Xiao Shenwei 14 Oct '20

14 Oct '20
DOCKER_REGISTRY_HOST, DOCKER_REGISTRY_HOST these field are our local repository address it's used by $CCI_SRC/sbin/docker-pull Signed-off-by: Xiao Shenwei <xiaoshenwei96(a)163.com> --- sparrow/3-code/dev-env | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sparrow/3-code/dev-env b/sparrow/3-code/dev-env index 80ee2cf..11c7fb0 100755 --- a/sparrow/3-code/dev-env +++ b/sparrow/3-code/dev-env @@ -10,6 +10,8 @@ server_ip=$(ip route get 1.2.3.4 | awk '{print $7; exit}') : ${gitcache_port:=5000} : ${FLUENTD_SERVER_HOST:=$server_ip} : ${FLUENTD_SERVER_PORT:=24224} +: ${DOCKER_REGISTRY_HOST:=$server_ip} +: ${DOCKER_REGISTRY_PORT:=5001} mkdir -p /etc/compass-ci/defaults cat > /etc/compass-ci/defaults/$server_name.yaml <<EOF @@ -22,6 +24,8 @@ GITCACHE_HOST: $gitcache_host GITCACHE_PORT: $gitcache_port FLUENTD_SERVER_HOST: $FLUENTD_SERVER_HOST FLUENTD_SERVER_PORT: $FLUENTD_SERVER_PORT +DOCKER_REGISTRY_HOST: $DOCKER_REGISTRY_HOST +DOCKER_REGISTRY_PORT: $DOCKER_REGISTRY_PORT EOF cat > /etc/profile.d/compass.sh <<'EOF' -- 2.23.0
1 0
0 0
[PATCH compass-ci 2/3] sparrow: process will exit if firewalld.service was not installed
by Hu Xuejiao 14 Oct '20

14 Oct '20
When firewalld is inactive, return code of 'systemctl status firewalld' will be 3, and install-tiny has set -e, so this will cause this process exit. Signed-off-by: Hu XueJiao <huxuejiao1(a)huawei.com> --- sparrow/2-network/iptables | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/sparrow/2-network/iptables b/sparrow/2-network/iptables index 092c4ca..772eb6f 100755 --- a/sparrow/2-network/iptables +++ b/sparrow/2-network/iptables @@ -12,15 +12,23 @@ iptables -I FORWARD 1 -j ACCEPT iptables -t nat -A POSTROUTING -o "$PUB_IFACE" -s $BR0_SUBNET -j MASQUERADE iptables -t nat -A POSTROUTING -o $BR0_IFACE -d $BR0_SUBNET -j MASQUERADE -systemctl status firewalld | grep -q "running" && { +command -v firewall-cmd > /dev/null || { + echo "firewalld.service could not be found" + exit 0 +} + +systemctl start firewalld +[ "$(systemctl is-active firewalld)" == "active" ] || { + echo "start firewalld.service failed" + exit 0 +} - DOCKER0_IFACE=docker0 - DOCKER0_SUBNET=172.17.0.0/16 - iptables -t nat -A POSTROUTING -o $PUB_IFACE -s $DOCKER0_SUBNET -j MASQUERADE - iptables -t nat -A POSTROUTING -o $DOCKER0_IFACE -d $DOCKER0_SUBNET -j MASQUERADE +DOCKER0_SUBNET=172.17.0.0/16 - firewall-cmd --zone=public --add-rich-rule="rule family=ipv4 source address=$DOCKER0_SUBNET accept" - firewall-cmd --zone=public --add-rich-rule="rule family=ipv4 source address=$BR0_SUBNET accept" - firewall-cmd --zone=public --add-rich-rule="rule family=ipv4 source address=0.0.0.0/32 accept" -} +firewall-cmd --zone=public --add-rich-rule="rule family=ipv4 source +address=$DOCKER0_SUBNET accept" +firewall-cmd --zone=public --add-rich-rule="rule family=ipv4 source +address=$BR0_SUBNET accept" +firewall-cmd --zone=public --add-rich-rule="rule family=ipv4 source +address=0.0.0.0/32 accept" -- 2.23.0
2 1
0 0
[PATCH lab-z9] fix(allot): idle job should be directly assigned to the testbox level
by Yu Chuan 14 Oct '20

14 Oct '20
Assign 36 physical machines for multi-qemu job, a total of 864 virtual machines. Signed-off-by: Yu Chuan <13186087857(a)163.com> --- allot/idle/taishan200-2280-2s48p-256g--a11 | 1 + allot/idle/taishan200-2280-2s48p-256g--a12 | 1 + allot/idle/taishan200-2280-2s48p-256g--a13 | 1 + allot/idle/taishan200-2280-2s48p-256g--a14 | 1 + allot/idle/taishan200-2280-2s48p-256g--a15 | 1 + allot/idle/taishan200-2280-2s48p-256g--a16 | 1 + allot/idle/taishan200-2280-2s48p-256g--a17 | 1 + allot/idle/taishan200-2280-2s48p-256g--a18 | 1 + allot/idle/taishan200-2280-2s48p-256g--a19 | 1 + allot/idle/taishan200-2280-2s48p-256g--a20 | 1 + allot/idle/taishan200-2280-2s48p-256g--a21 | 1 + allot/idle/taishan200-2280-2s48p-256g--a22 | 1 + allot/idle/taishan200-2280-2s48p-256g--a24 | 1 + allot/idle/taishan200-2280-2s48p-256g--a25 | 1 + allot/idle/taishan200-2280-2s48p-256g--a26 | 1 + allot/idle/taishan200-2280-2s48p-256g--a27 | 1 + allot/idle/taishan200-2280-2s48p-256g--a28 | 1 + allot/idle/taishan200-2280-2s48p-256g--a29 | 1 + allot/idle/taishan200-2280-2s48p-256g--a30 | 1 + allot/idle/taishan200-2280-2s48p-256g--a31 | 1 + allot/idle/taishan200-2280-2s48p-256g--a32 | 1 + allot/idle/taishan200-2280-2s48p-256g--a33 | 1 + allot/idle/taishan200-2280-2s48p-256g--a34 | 1 + allot/idle/taishan200-2280-2s48p-256g--a35 | 1 + .../multi-qemu.yaml | 0 allot/idle/taishan200-2280-2s48p-256g--a61 | 1 + allot/idle/taishan200-2280-2s48p-256g--a62 | 1 + allot/idle/taishan200-2280-2s48p-256g--a63 | 1 + allot/idle/taishan200-2280-2s48p-256g--a64 | 1 + allot/idle/taishan200-2280-2s48p-256g--a65 | 1 + allot/idle/taishan200-2280-2s48p-256g--a66 | 1 + allot/idle/taishan200-2280-2s48p-256g--a67 | 1 + allot/idle/taishan200-2280-2s48p-256g--a68 | 1 + allot/idle/taishan200-2280-2s48p-256g--a69 | 1 + allot/idle/taishan200-2280-2s48p-256g--a70 | 1 + allot/idle/taishan200-2280-2s48p-256g--a71 | 1 + .../taishan200-2280-2s64p-256g/multi-qemu.yaml | 18 ------------------ 37 files changed, 35 insertions(+), 18 deletions(-) create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a11 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a12 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a13 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a14 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a15 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a16 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a17 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a18 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a19 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a20 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a21 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a22 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a24 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a25 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a26 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a27 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a28 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a29 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a30 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a31 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a32 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a33 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a34 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a35 rename allot/idle/{taishan200-2280-2s48p-256g => taishan200-2280-2s48p-256g--a60}/multi-qemu.yaml (100%) create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a61 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a62 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a63 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a64 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a65 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a66 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a67 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a68 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a69 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a70 create mode 120000 allot/idle/taishan200-2280-2s48p-256g--a71 delete mode 100644 allot/idle/taishan200-2280-2s64p-256g/multi-qemu.yaml diff --git a/allot/idle/taishan200-2280-2s48p-256g--a11 b/allot/idle/taishan200-2280-2s48p-256g--a11 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a11 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a12 b/allot/idle/taishan200-2280-2s48p-256g--a12 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a12 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a13 b/allot/idle/taishan200-2280-2s48p-256g--a13 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a13 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a14 b/allot/idle/taishan200-2280-2s48p-256g--a14 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a14 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a15 b/allot/idle/taishan200-2280-2s48p-256g--a15 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a15 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a16 b/allot/idle/taishan200-2280-2s48p-256g--a16 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a16 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a17 b/allot/idle/taishan200-2280-2s48p-256g--a17 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a17 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a18 b/allot/idle/taishan200-2280-2s48p-256g--a18 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a18 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a19 b/allot/idle/taishan200-2280-2s48p-256g--a19 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a19 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a20 b/allot/idle/taishan200-2280-2s48p-256g--a20 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a20 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a21 b/allot/idle/taishan200-2280-2s48p-256g--a21 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a21 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a22 b/allot/idle/taishan200-2280-2s48p-256g--a22 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a22 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a24 b/allot/idle/taishan200-2280-2s48p-256g--a24 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a24 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a25 b/allot/idle/taishan200-2280-2s48p-256g--a25 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a25 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a26 b/allot/idle/taishan200-2280-2s48p-256g--a26 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a26 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a27 b/allot/idle/taishan200-2280-2s48p-256g--a27 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a27 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a28 b/allot/idle/taishan200-2280-2s48p-256g--a28 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a28 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a29 b/allot/idle/taishan200-2280-2s48p-256g--a29 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a29 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a30 b/allot/idle/taishan200-2280-2s48p-256g--a30 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a30 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a31 b/allot/idle/taishan200-2280-2s48p-256g--a31 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a31 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a32 b/allot/idle/taishan200-2280-2s48p-256g--a32 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a32 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a33 b/allot/idle/taishan200-2280-2s48p-256g--a33 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a33 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a34 b/allot/idle/taishan200-2280-2s48p-256g--a34 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a34 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a35 b/allot/idle/taishan200-2280-2s48p-256g--a35 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a35 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g/multi-qemu.yaml b/allot/idle/taishan200-2280-2s48p-256g--a60/multi-qemu.yaml similarity index 100% rename from allot/idle/taishan200-2280-2s48p-256g/multi-qemu.yaml rename to allot/idle/taishan200-2280-2s48p-256g--a60/multi-qemu.yaml diff --git a/allot/idle/taishan200-2280-2s48p-256g--a61 b/allot/idle/taishan200-2280-2s48p-256g--a61 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a61 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a62 b/allot/idle/taishan200-2280-2s48p-256g--a62 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a62 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a63 b/allot/idle/taishan200-2280-2s48p-256g--a63 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a63 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a64 b/allot/idle/taishan200-2280-2s48p-256g--a64 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a64 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a65 b/allot/idle/taishan200-2280-2s48p-256g--a65 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a65 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a66 b/allot/idle/taishan200-2280-2s48p-256g--a66 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a66 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a67 b/allot/idle/taishan200-2280-2s48p-256g--a67 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a67 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a68 b/allot/idle/taishan200-2280-2s48p-256g--a68 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a68 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a69 b/allot/idle/taishan200-2280-2s48p-256g--a69 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a69 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a70 b/allot/idle/taishan200-2280-2s48p-256g--a70 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a70 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s48p-256g--a71 b/allot/idle/taishan200-2280-2s48p-256g--a71 new file mode 120000 index 000000000000..479a75ab5069 --- /dev/null +++ b/allot/idle/taishan200-2280-2s48p-256g--a71 @@ -0,0 +1 @@ +taishan200-2280-2s48p-256g--a60 \ No newline at end of file diff --git a/allot/idle/taishan200-2280-2s64p-256g/multi-qemu.yaml b/allot/idle/taishan200-2280-2s64p-256g/multi-qemu.yaml deleted file mode 100644 index 4525fcd49735..000000000000 --- a/allot/idle/taishan200-2280-2s64p-256g/multi-qemu.yaml +++ /dev/null @@ -1,18 +0,0 @@ -suite: multi-qemu -category: functional - -os: openeuler -os_version: 20.03 -os_arch: aarch64 -os_mount: initramfs -simplify-ci: -multi-qemu-0: - nr_vm: 20 - tbox_group: vm-hi1620-2p8g -multi-qemu-1: - nr_vm: 2 - tbox_group: vm-hi1620-2p4g -multi-qemu-2: - nr_vm: 2 - tbox_group: vm-hi1620-1p1g -sleep: 100d -- 2.23.0
4 8
0 0
  • ← Newer
  • 1
  • ...
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • ...
  • 69
  • Older →

HyperKitty Powered by HyperKitty