Skip to content

Commit

Permalink
installs libssl-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
shahadarsh committed Jan 3, 2024
1 parent 4b808ca commit 0f7e57e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/tembo_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,13 @@ jobs:
working-directory: ./tembo-cli
id: cargo_build
run: |
if [[ ${{ matrix.os }} -eq "ubuntu-20.04" ]]
then
set -x
if [ ${{ matrix.os }} -eq "ubuntu-20.04" ]; then
apt update -y
apt install pkg-config -y
elif [[ ${{ matrix.os }} -eq "macos-latest" ]]
then
apt install pkg-config libssl-dev -y
elif [ ${{ matrix.os }} -eq "macos-latest" ]; then
brew install pkg-config
fi
set -x
rustup target add ${{ matrix.target }}
cargo build --release --target=${{ matrix.target }}
TEMBO_VERSION=$(target/${{ matrix.target }}/release/tembo --version)
Expand Down

0 comments on commit 0f7e57e

Please sign in to comment.