6e7616b504
Why I did it Require multi-asic VS tests to be run during PR checks and merges in master branch. How I did it Add job to run multi-asic VS tests in sonic-buildimage pipeline. Currently pipeline will run basic bgp fact test to ensure the testbed comes up, load minigraph works and bgp sessions are up. Use new multi-asic VS agent pool sonictest-ma in official-multi-asic-vs pipeline Make multi-asic VS test optional for now. There are two known issues: Announce route failure during refresh-dut in setup testbed stage. bgp sessions not getting established. How to verify it Tested using test azure pipelines.
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
# Starter pipeline
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
# Add steps that build, run tests, deploy, and more:
|
|
# https://aka.ms/yaml
|
|
|
|
schedules:
|
|
- cron: "0 18 * * Sun,Wed,Fri"
|
|
displayName: "Alternate day build"
|
|
branches:
|
|
include:
|
|
- master
|
|
always: true
|
|
|
|
trigger: none
|
|
pr: none
|
|
|
|
stages:
|
|
- stage: Build
|
|
pool: sonicbld
|
|
variables:
|
|
- template: azure-pipelines-repd-build-variables.yml
|
|
- name: CACHE_MODE
|
|
value: wcache
|
|
jobs:
|
|
- template: azure-pipelines-build.yml
|
|
parameters:
|
|
buildOptions: 'USERNAME=admin SONIC_BUILD_JOBS=$(nproc) BUILD_MULTIASIC_KVM=y ${{ variables.VERSION_CONTROL_OPTIONS }}'
|
|
jobGroups:
|
|
- name: vs
|
|
|
|
- stage: Test
|
|
variables:
|
|
- name: inventory
|
|
value: veos_vtb
|
|
- name: testbed_file
|
|
value: vtestbed.csv
|
|
|
|
jobs:
|
|
- job:
|
|
pool: sonictest-ma
|
|
displayName: "kvmtest-multi-asic-t1-lag"
|
|
timeoutInMinutes: 240
|
|
|
|
steps:
|
|
- template: run-test-template.yml
|
|
parameters:
|
|
dut: vlab-08
|
|
tbname: vms-kvm-four-asic-t1-lag
|
|
ptf_name: ptf_vms6-4
|
|
tbtype: multi-asic-t1-lag
|
|
image: sonic-4asic-vs.img.gz
|