Skip to content

remove bullseye

remove bullseye #5

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
debian_version: [bookworm]
container:
image: debian:${{ matrix.debian_version }}
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
#!/bin/bash
apt update && apt -y install cmake build-essential pkg-config libssl-dev python3-protobuf protobuf-compiler-grpc libgrpc++-dev nanopb libnanopb-dev && cd kuka-external-control-sdk && mkdir build
- name: Build and install
run: cmake .. && make install
working-directory: ./kuka-external-control-sdk/build