Skip to content
Snippets Groups Projects
before_build_wheel.sh 268 B
Newer Older
  • Learn to ignore specific revisions
  • 
    # On 32-bit Linux platforms, we need libatomic1 to use rustup
    
    if command -v yum &> /dev/null; then
       yum install -y libatomic
    
    fi
    
    # Install a Rust toolchain
    curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.82.0 -y --profile minimal