[dpapp] Initial dpapp implementation being a vpp plugin #291
Workflow file for this run
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-saithrift-client-bldr-image | |
on: | |
push: | |
branches: [ "**" ] | |
paths: | |
- '.github/workflows/dash-saithrift-client-bldr-docker.yml' | |
- '.github/workflows/dash-saithrift-client-bldr-docker.yml' | |
- 'dash-pipeline/Makefile' | |
- 'dash-pipeline/dockerfiles/Dockerfile.saithrift-client-bldr' | |
- 'dash-pipeline/dockerfiles/DOCKER_SAITHRIFT_CLIENT_BLDR_IMG.env' | |
- 'dash-pipeline/.dockerignore' | |
- 'dash-pipeline/dockerfiles/.dockerignore' | |
pull_request: | |
branches: [ "**" ] | |
paths: | |
- '.github/workflows/dash-saithrift-client-bldr-docker.yml' | |
- 'dash-pipeline/Makefile' | |
- 'dash-pipeline/dockerfiles/Dockerfile.saithrift-client-bldr' | |
- 'dash-pipeline/dockerfiles/DOCKER_SAITHRIFT_CLIENT_BLDR_IMG.env' | |
- 'dash-pipeline/.dockerignore' | |
- 'dash-pipeline/dockerfiles/.dockerignore' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build dash-saithrift-client-bldr-image | |
runs-on: ubuntu-20.04 | |
env: | |
docker_fg_flags: -u root --privileged | |
docker_bg_flags: -d -u root --privileged | |
defaults: | |
run: | |
working-directory: ./dash-pipeline | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Pull docker p4c image | |
run: make docker-dash-p4c | |
- name: Build P4 software switch (bmv2) and P4Info | |
run: DOCKER_FLAGS=$docker_fg_flags make p4 | |
- name: Install SAI submodule | |
run: git submodule update --init | |
- name: Build docker saithrift-bldr image | |
run: make docker-saithrift-bldr | |
- name: Generate SAI API | |
run: DOCKER_FLAGS=$docker_fg_flags make sai | |
- name: Generate SAI-Thrift client and server code and libs | |
run: DOCKER_FLAGS=$docker_fg_flags make saithrift-server | |
- name: Build saithrift client builder docker image | |
run: DOCKER_FLAGS=$docker_fg_flags make docker-saithrift-client-bldr | |
- 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-saithrift-client-bldr docker image | |
if: ${{ github.event_name != 'pull_request' && github.repository == 'sonic-net/DASH' }} | |
run: make docker-publish-saithrift-client-bldr |