Skip to content

Commit

Permalink
ci: 💚 ci test install setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
ignazio-bovo committed May 30, 2024
1 parent 76ebd71 commit e53fabb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

set -e

// if os is mac os then install pip setuptools
if [[ "$OSTYPE" == "darwin"* ]]; then
// if python3 is not installed
if ! command -v python3 &>/dev/null; then
brew install python@3.12
fi
python3.12 -m ensurepip --upgrade
python3.12 -m pip install --upgrade setuptools
fi
yarn --frozen-lockfile
yarn workspace @joystream/types build
yarn workspace @joystream/metadata-protobuf build
Expand Down

0 comments on commit e53fabb

Please sign in to comment.