Skip to content

Commit 8bd5295

Browse files
committed
Merge branch 'main' of github.com:viamrobotics/viam-cpp-sdk
2 parents 1500887 + 68991e0 commit 8bd5295

File tree

152 files changed

+18102
-35504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+18102
-35504
lines changed

.github/workflows/ai-updater.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: AI Updater Workflow
2+
3+
on:
4+
push:
5+
branches:
6+
- workflow/update-protos
7+
workflow_dispatch:
8+
9+
jobs:
10+
call-ai-updater:
11+
uses: gabegottlob/viam-ai-updater/.github/workflows/ai-updater.yml@main
12+
with:
13+
target_branch: workflow/update-protos
14+
sdk: cpp
15+
secrets:
16+
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
17+
GIT_ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}

.github/workflows/conan.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,9 @@ jobs:
190190
- name: Update CMake for bullseye
191191
if: ${{ matrix.image == 'debian:bullseye' }}
192192
run: |
193-
apt-add-repository -y 'deb http://deb.debian.org/debian bullseye-backports main'
194-
193+
apt-get install -y software-properties-common
194+
apt-add-repository -y 'deb https://archive.debian.org/debian bullseye-backports main'
195+
195196
apt-get update
196197
apt-get -y install cmake
197198

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ jobs:
284284
- name: Update CMake for bullseye
285285
if: ${{ matrix.image == 'debian:bullseye' }}
286286
run: |
287-
apt-add-repository -y 'deb http://deb.debian.org/debian bullseye-backports main'
287+
sudo apt-get install -y software-properties-common
288+
apt-add-repository -y 'deb https://archive.debian.org/debian bullseye-backports main'
288289
289290
apt-get update
290291
apt-get -y install cmake

.github/workflows/update_protos.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository_owner == 'viamrobotics'
1212
runs-on: ubuntu-latest
1313
container:
14-
image: ghcr.io/viamrobotics/canon:amd64
14+
image: ghcr.io/viamrobotics/rdk-devenv:amd64
1515
steps:
1616
- uses: actions/checkout@v4
1717
with:
@@ -20,6 +20,8 @@ jobs:
2020
# in the release job. Only very cursory effort was made to prune.
2121
- name: install dependencies
2222
run: |
23+
sudo apt-get install -y software-properties-common
24+
apt-add-repository -y 'deb https://archive.debian.org/debian bullseye-backports main'
2325
apt-get update
2426
apt-get -y dist-upgrade
2527
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ else()
4141
cmake_minimum_required(VERSION 3.25 FATAL_ERROR)
4242
endif()
4343

44-
set(CMAKE_PROJECT_VERSION 0.16.0)
44+
set(CMAKE_PROJECT_VERSION 0.17.0)
4545

4646
# Identify the project.
4747
project(viam-cpp-sdk

etc/docker/base-images/Dockerfile.debian.bullseye

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN apt-get -y --no-install-recommends install \
3232
# Add the public key for the llvm repository
3333
RUN bash -c 'wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|apt-key add -'
3434
RUN apt-add-repository -y 'deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-15 main'
35-
RUN apt-add-repository -y 'deb http://deb.debian.org/debian bullseye-backports main'
35+
RUN apt-add-repository -y 'deb https://archive.debian.org/debian bullseye-backports main'
3636

3737
RUN apt-get update
3838

src/viam/api/api_proto_tag.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.457
1+
v0.1.473

src/viam/api/app/mltraining/v1/ml_training.grpc.pb.cc

Lines changed: 112 additions & 147 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/viam/api/app/mltraining/v1/ml_training.grpc.pb.h

Lines changed: 161 additions & 561 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/viam/api/app/packages/v1/packages.grpc.pb.cc

Lines changed: 64 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)