Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaj authored Dec 1, 2024
1 parent 3e876ba commit 6c90b70
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,20 @@ jobs:
image: quay.io/pypa/manylinux2014_x86_64
options: --user root
run: |
echo "=====Install Rust====="
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
echo "=====Set Rust Version====="
rustup install ${{ fromJSON(vars.RUST_VERSION) }}
rustup default ${{ fromJSON(vars.RUST_VERSION) }}
echo "=====Check Rust Version====="
rustc --version
cargo --version
echo "=====Install Newer OpenSSL====="
curl -O -L https://www.openssl.org/source/openssl-1.1.1w.tar.gz
ls -al openssl-1.1.1w.tar.gz
tar zxf openssl-1.1.1w.tar.gz
cd openssl-1.1.1w
./config
make
make install

0 comments on commit 6c90b70

Please sign in to comment.