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

11 lines
293 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 \
2024-03-21 21:44:37 +00:00
flex bison bc protobuf-compiler musl-tools qemu-utils gcc-aarch64-linux-gnu
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