Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check dpapp status
Browse files Browse the repository at this point in the history
jimmyzhai committed Nov 6, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 8d30141 commit 0b51e53
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/dash-bmv2-ci.yml
Original file line number Diff line number Diff line change
@@ -85,7 +85,16 @@ jobs:
- name: Run saithrift server
run: DOCKER_FLAGS=$docker_bg_flags make run-saithrift-server
- name: Run dpapp
run: DOCKER_FLAGS=$docker_bg_flags make run-dpapp HAVE_DPAPP=y
run: |
docker rm -f dash-dpapp-runner
DOCKER_FLAGS=$docker_bg_flags make run-dpapp HAVE_DPAPP=y
- name: Check dpapp status
run: |
sleep 8 && docker ps -a
docker inspect dash-dpapp-runner
docker logs -t dash-dpapp-runner
docker exec dash-dpapp-runner vppctl show version
docker exec dash-dpapp-runner vppctl show hardware-interfaces
- name: Run PTF Tests
run: DOCKER_FLAGS=$docker_fg_root_flags make run-saithrift-ptftests
- name: Deploy ixia-c Traffic Generator
1 change: 0 additions & 1 deletion dash-pipeline/Makefile
Original file line number Diff line number Diff line change
@@ -275,7 +275,6 @@ DOCKER_RUN_DPAPP = docker run\
-v $(PWD)/../:/dash \
--network=host \
-u $(HOST_USER):$(HOST_GROUP) \
--rm \

.PHONY:dpapp dpapp-clean
dpapp-clean:

0 comments on commit 0b51e53

Please sign in to comment.