osrm-backend/third_party/protozero/.github/actions/install-ubuntu/action.yml
2024-07-13 15:53:21 +02:00

15 lines
382 B
YAML

name: Install Prerequisites on Ubuntu
runs:
using: composite
steps:
- name: Install packages
run: |
sudo apt-get update -q
sudo apt-get install -yq \
libprotobuf-dev \
protobuf-compiler
if [ "$CC" = clang-13 ]; then sudo apt-get install -yq --no-install-suggests --no-install-recommends clang-13; fi
shell: bash