[dash-p4] Update DASH BM P4 code for fast path SAI API generation (#517) #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DASH-docker-p4c-dpdk-build-image | |
on: | |
push: | |
branches: [ "**" ] | |
paths: | |
- '.github/workflows/dash-p4c-dpdk-docker.yml' | |
- 'dash-pipeline/dockerfiles/Dockerfile.p4c-dpdk' | |
- 'dash-pipeline/dockerfiles/DOCKER_P4C_DPDK_IMG.env' | |
- 'dash-pipeline/.dockerignore' | |
- 'dash-pipeline/dockerfiles/.dockerignore' | |
pull_request: | |
branches: [ "**" ] | |
paths: | |
- '.github/workflows/dash-p4c-dpdk-docker.yml' | |
- 'dash-pipeline/dockerfiles/Dockerfile.p4c-dpdk' | |
- 'dash-pipeline/dockerfiles/DOCKER_P4C_DPDK_IMG.env' | |
- 'dash-pipeline/.dockerignore' | |
- 'dash-pipeline/dockerfiles/.dockerignore' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build docker dash-p4c-dpdk image | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
working-directory: ./dash-pipeline | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build dash-p4c-dpdk docker image | |
run: make docker-dash-p4c-dpdk | |
- uses: azure/docker-login@v1 | |
if: ${{ github.event_name != 'pull_request' && github.repository == 'sonic-net/DASH' }} | |
with: | |
login-server: sonicdash.azurecr.io | |
username: ${{ secrets.DASH_ACR_USERNAME }} | |
password: ${{ secrets.DASH_ACR_PASSWORD }} | |
- name: Publish dash-p4c-dpdk docker image to ACR | |
run: make docker-publish-dash-p4c-dpdk | |
if: ${{ github.event_name != 'pull_request' && github.repository == 'sonic-net/DASH' }} |