Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Changing this will cause build/publish to occur in CI actions
export DASH_ACR_REGISTRY=sonicdash.azurecr.io
export DOCKER_SAI_CHALLENGER_CLIENT_BLDR_IMG_NAME=${DASH_ACR_REGISTRY}/dash-saichallenger-client-bldr
export DOCKER_SAI_CHALLENGER_CLIENT_BLDR_IMG_CTAG?=230515
export DOCKER_SAI_CHALLENGER_CLIENT_BLDR_IMG_CTAG?=230530
2 changes: 1 addition & 1 deletion dash-pipeline/dockerfiles/Dockerfile.saichallenger-client
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sonicdash.azurecr.io/dash-saichallenger-client-bldr:230515
FROM sonicdash.azurecr.io/dash-saichallenger-client-bldr:230530

ENV SAI_CHALLENGER_PATH /sai-challenger
ENV DASH_PATH /dash
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Requires <url of sai-challenger branch> <commit sha> or something
# sc-client:230515
# sc-client:230530
FROM sc-client

ADD tests/ /tests/
Expand Down
2 changes: 1 addition & 1 deletion dash-pipeline/tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
snappi==0.9.4
pytest==6.0.1
pytest>=6.0.1
2 changes: 1 addition & 1 deletion test/SAI-Challenger
Submodule SAI-Challenger updated 45 files
+1 −0 .github/workflows/sc-docker-client-server-bldr.yml
+1 −0 .github/workflows/sc-docker-standalone-bldr.yml
+3 −0 build.sh
+1 −0 common/sai.py
+12 −10 common/sai_client/sai_redis_client/sai_redis_client.py
+1 −0 common/sai_client/sai_thrift_client/sai_thrift_client.py
+0 −1,462 common/sai_client/sai_thrift_client/sai_thrift_metadata.py
+22 −2 common/sai_client/sai_thrift_client/sai_thrift_utils.py
+25 −17 common/sai_data.py
+1 −0 common/sai_dpu.py
+18 −4 common/sai_dut.py
+5 −10 common/sai_npu.py
+1 −0 common/sai_phy.py
+3 −0 common/sai_testbed.py
+1 −1 dockerfiles/Dockerfile.client
+1 −1 dockerfiles/Dockerfile.server
+1 −1 docs/sai_dataplane.md
+3 −1 npu/broadcom/BCM56850/saivs/Dockerfile.saithrift
+58 −0 phy/broadcom/BCM81724/saivs/Dockerfile
+3 −1 phy/broadcom/BCM81724/saivs/Dockerfile.saithrift
+45 −0 phy/broadcom/BCM81724/saivs/Dockerfile.server
+22 −0 phy/broadcom/BCM81724/saivs/configs/context_config.json
+61 −0 phy/broadcom/BCM81724/saivs/configs/server/supervisord.conf
+61 −0 phy/broadcom/BCM81724/saivs/configs/supervisord.conf
+3 −2 run.sh
+7 −7 sai.env
+46 −0 testbeds/saivs_client_server_phy.json
+2 −2 testbeds/saivs_sonic.json
+38 −0 testbeds/saivs_standalone_phy.json
+1 −1 testbeds/snappi_bmv2_client_server.json
+1 −1 testbeds/snappi_saivs_client_server.json
+74 −0 tests/phy/ut/test_phy_port_ut.py
+20 −0 tests/phy/ut/test_phy_switch_ut.py
+1 −1 tests/test_dc_t1.py
+1 −1 tests/test_l2_basic.py
+1 −1 tests/test_sairec.py
+1 −1 tests/test_stats.py
+1 −1 tests/test_vrf.py
+1 −1 tests/ut/test_acl_ut.py
+1 −1 tests/ut/test_bridge_ut.py
+1 −1 tests/ut/test_hostif_ut.py
+1 −1 tests/ut/test_port_ut.py
+1 −1 tests/ut/test_switch_ut.py
+1 −1 tests/ut/test_vlan_ut.py
+1 −1 tests/ut/test_vrf_ut.py
2 changes: 1 addition & 1 deletion test/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
snappi==0.9.4
pytest==6.0.1
pytest>=6.0.1