Skip to content

Commit

Permalink
Check dpapp status
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyzhai committed Nov 6, 2024
1 parent 8d30141 commit 0b51e53
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion dash-pipeline/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0b51e53

Please sign in to comment.