forked from dipdup-io/stone-packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,50 @@ | ||
c | ||
#!/bin/bash | ||
# Build script for Fedora 34 | ||
set -o xtrace | ||
set -e | ||
|
||
# Update and install system dependencies | ||
dnf update -y && dnf install -y \ | ||
gcc gcc-c++ make wget git openssl-devel bzip2-devel libffi-devel \ | ||
elfutils-libelf-devel gmp-devel elfutils-devel clang \ | ||
libstdc++-devel libcxx libcxx-devel ncurses-compat-libs cairo-devel \ | ||
python3.9 python3.9-devel \ | ||
&& dnf clean all && rm -rf /var/cache/dnf | ||
|
||
# Create a virtual environment with Python 3.9 | ||
python3.9 -m venv /tmp/stone-env | ||
|
||
# Activate the virtual environment | ||
source /tmp/stone-env/bin/activate | ||
|
||
# Set a writable pip cache directory | ||
export PIP_CACHE_DIR=/tmp/pip-cache | ||
mkdir -p $PIP_CACHE_DIR | ||
|
||
# Upgrade pip within the virtual environment | ||
pip install --upgrade pip --cache-dir $PIP_CACHE_DIR | ||
|
||
# Install Python dependencies without using the cache | ||
pip install --no-cache-dir cpplint pytest numpy sympy==1.12.1 cairo-lang==0.12.0 | ||
|
||
# Download and install Bazelisk | ||
wget "https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-linux-amd64" | ||
chmod 755 "bazelisk-linux-amd64" | ||
mv "bazelisk-linux-amd64" /usr/local/bin/bazelisk | ||
|
||
# Navigate to the checked-out code | ||
cd "${GITHUB_WORKSPACE:-/github/workspace}" || exit | ||
|
||
# Ensure TARGET_ARCH is set | ||
arch=${TARGET_ARCH:-x86_64} | ||
|
||
# Build and test with Bazelisk | ||
bazelisk build --cpu="$arch" //... | ||
bazelisk test --cpu="$arch" //... | ||
|
||
# Create symbolic links for cpu_air_prover and cpu_air_verifier | ||
ln -s "$(pwd)/bazel-bin/src/starkware/main/cpu/cpu_air_prover" /usr/local/bin/cpu_air_prover | ||
ln -s "$(pwd)/bazel-bin/src/starkware/main/cpu/cpu_air_verifier" /usr/local/bin/cpu_air_verifier | ||
|
||
# Deactivate the virtual environment | ||
deactivate |