fix: comment rust stuff #5
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
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/Moonsong-Labs/pathfinder.git ~/pathfinder | |
# - 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 |