Skip to content

Commit

Permalink
bring over cross-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
paultag committed Oct 22, 2024
1 parent 470c192 commit 76fc5e6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/cross-deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash
set -e
set -o pipefail

# Install our deps.
sudo apt update -y && sudo apt install -y \
ca-certificates \
clang \
cmake \
curl \
g++ \
gcc \
gcc-mingw-w64-i686 \
gcc-mingw-w64 \
jq \
libmpc-dev \
libmpfr-dev \
libgmp-dev \
libssl-dev \
libxml2-dev \
mingw-w64 \
wget \
zlib1g-dev

# We need this for the version.
cargo install toml-cli

# Install cross.
cargo install cross

0 comments on commit 76fc5e6

Please sign in to comment.