Skip to content

Added logic to create sairedis.rec aliases (#223) #22

Added logic to create sairedis.rec aliases (#223)

Added logic to create sairedis.rec aliases (#223) #22

name: sc-client-deb11-publish
on:
push:
branches:
- 'main'
paths:
- '.github/workflows/sc-client-deb11-publish.yml'
- 'dockerfiles/bullseye/Dockerfile.client'
- 'dockerfiles/bullseye/Dockerfile.saithrift-client'
- 'common/**'
- 'cli/**'
- 'scripts/**'
- 'configs/**'
- 'setup.py'
- 'build.sh'
- '.dockerignore'
- 'sai.env'
jobs:
build-sc-client:
name: Build SAI Challenger client image
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Update submodules
run: git submodule update --init
- name: Build client Docker image
run: ./build.sh -i client -o deb11 --nosnappi
- name: Build client Docker image with SAI thrift
run: ./build.sh -i client -s thrift -o deb11 --nosnappi
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: plvisiondevs
password: ${{ secrets.DOCKER_TOKEN }}
- name: Create a tag for DockerHub
run: docker tag sc-client:bullseye plvisiondevs/sc-client:bullseye-latest
- name: docker push sc-client
run: docker push plvisiondevs/sc-client:bullseye-latest
- name: Create a tag for DockerHub
run: docker tag sc-thrift-client:bullseye plvisiondevs/sc-thrift-client:bullseye-latest
- name: docker push sc-thrift-client
run: docker push plvisiondevs/sc-thrift-client:bullseye-latest