Skip to content

RSDK-9848 - fix update-proto workflow #481

RSDK-9848 - fix update-proto workflow

RSDK-9848 - fix update-proto workflow #481

Workflow file for this run

name: Update Protos + Open PR
on:
pull_request:
branches:
- main
workflow_dispatch:
repository_dispatch:
types:
- protos-updated
jobs:
update-protos:
#if: github.repository_owner == 'viamrobotics'
runs-on: ubuntu-latest
container:
image: ghcr.io/viamrobotics/canon:amd64
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
apt-get update
apt-get -y dist-upgrade
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
build-essential \
ca-certificates \
curl \
g++ \
gdb \
gnupg \
gpg \
less \
libboost-all-dev \
libgrpc++-dev \
libprotobuf-dev \
libssl-dev \
ninja-build \
pkg-config \
protobuf-compiler \
protobuf-compiler-grpc \
software-properties-common \
sudo \
wget \
#- name: setup-grpc
#run: |
#git clone https://github.com/Microsoft/vcpkg.git \
#&& cd vcpkg && ./bootstrap-vcpkg.sh && ./vcpkg integrate install \
#&& ./vcpkg install grpc \
#&& ./vcpkg install upb
#- name: setup-openssl
#run: apt-get update && sudo apt-get -y --no-install-recommends install libssl-dev
- uses: MarkusJx/[email protected]
with:
boost_version: 1.81.0
platform_version: 22.04
- uses: lukka/get-cmake@latest
with:
cmakeVersion: 3.25.2
ninjaVersion: 1.11.1
- uses: bufbuild/[email protected]
- uses: arduino/setup-protoc@v1
- name: Update buf
run: |
cmake -B build -DVIAMCPPSDK_USE_DYNAMIC_PROTOS=ON && cmake --build ./build --target update-buf
#run: |
#cmake -B build -DVIAMCPPSDK_USE_DYNAMIC_PROTOS=ON -DCMAKE_PREFIX_PATH=./vcpkg/installed/x64-linux/share \
#&& cmake --build ./build --target update-buf
env:
BOOST_ROOT: ${{ github.workspace }}/boost/boost
- name: Generate buf
run: |
cmake -B build -DVIAMCPPSDK_USE_DYNAMIC_PROTOS=ON -DCMAKE_PREFIX_PATH=./vcpkg/installed/x64-linux/share \
&& cmake --build ./build --target update-static-protos
env:
BOOST_ROOT: ${{ github.workspace }}/boost/boost
- name: cleanup
run: rm -rf boost/ && rm -rf vcpkg/
- name: Update proto tag
run: echo "${{ github.event.client_payload.tag }}" > src/viam/api/api_proto_tag.lock
- name: Add + Commit + Open PR
uses: peter-evans/create-pull-request@v3
with:
commit-message: '[WORKFLOW] Updating protos from ${{ github.event.client_payload.repo_name }}, commit: ${{ github.event.client_payload.sha }}'
branch: 'workflow/update-protos'
add-paths: src/viam/api/*
delete-branch: true
title: Automated Protos Update
body: This is an auto-generated PR to update proto definitions. Check the commits to see which repos and commits are responsible for the changes
assignees: stuqdog
reviewers: stuqdog