-
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
73 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Starknet Installer | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install required packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y curl git python3 python3-venv python3-dev build-essential libgmp-dev pkg-config libssl-dev zstd | ||
- name: Check if Cargo already installed | ||
id: cargo-check | ||
run: | | ||
if [ -f "$HOME/.cargo/env" ]; then | ||
echo "Cargo is already installed" | ||
echo "cargo_installed=true" >> $GITHUB_ENV | ||
else | ||
echo "cargo_installed=false" >> $GITHUB_ENV | ||
fi | ||
- name: Install Cargo if needed | ||
if: env.cargo_installed == 'false' | ||
run: | | ||
curl https://sh.rustup.rs -sSf -o /tmp/rustup.sh | ||
chmod +x /tmp/rustup.sh | ||
/tmp/rustup.sh -y -q | ||
- name: Get repo | ||
run: git clone https://github.com/eqlabs/pathfinder.git ~/pathfinder | ||
|
||
- name: Get latest version | ||
run: | | ||
cd ~/pathfinder | ||
git fetch | ||
git checkout $(git tag --list | sort | tail -n1) | ||
- name: Clear virtual env | ||
run: | | ||
rm -rf ~/pathfinder/py/.venv | ||
- name: Initialize virtual env | ||
run: | | ||
cd ~/pathfinder/py | ||
python3 -m venv .venv | ||
- name: Update pip and install dependencies | ||
run: | | ||
cd ~/pathfinder/py | ||
source .venv/bin/activate | ||
pip install --upgrade pip | ||
pip install -r requirements-dev.txt | ||
- name: Build pathfinder | ||
run: | | ||
source ~/.cargo/env | ||
cd ~/pathfinder | ||
cargo build --release --bin pathfinder | ||
- name: Download and extract database file | ||
run: | | ||
curl -L https://pub-1fac64c3c0334cda85b45bcc02635c32.r2.dev/sepolia-testnet_0.13.0_74494_pruned.sqlite.zst -o ~/pathfinder/sepolia-testnet.sqlite.zst | ||
zstd -d ~/pathfinder/sepolia-testnet.sqlite.zst -o ~/pathfinder/sepolia-testnet.sqlite |