Files
krata/hack/ci/install-deps.sh

10 lines
270 B
Bash
Raw Normal View History

2024-03-05 12:55:28 +00:00
#!/bin/sh
set -e
sudo apt-get update
2024-03-07 05:34:15 +00:00
sudo apt-get install -y \
build-essential libssl-dev libelf-dev musl-dev \
flex bison bc protobuf-compiler musl-tools qemu-utils
2024-03-07 09:04:05 +00:00
sudo gem install --no-document fpm
2024-03-21 21:38:18 +00:00
cargo install cross --git https://github.com/cross-rs/cross