From 612eb54894b8bc6c414092e9c2502f7a9e5ee370 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 30 May 2024 15:53:09 -0700 Subject: [PATCH] Remove compiler installation --- .github/workflows/ci.yml | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc69423f0..ff86efbe3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,26 +90,10 @@ jobs: - name: Install Protoc uses: arduino/setup-protoc@v3 - - name: Set up Poetry - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: true - uses: snok/install-poetry@v1 - with: - version: 1.5.1 - virtualenvs-create: true - virtualenvs-in-project: true - installer-parallel: true - - - name: Load cached venv - id: cached-poetry-dependencies - uses: actions/cache@v3 + - name: Set up Python + uses: actions/setup-python@v4 with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - - - name: Install dependencies - run: cd sdk ; poetry install - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + python-version: "3.11" - name: Cache Go modules uses: actions/cache@v3 @@ -121,6 +105,7 @@ jobs: - name: Install Protobuf Compilers run: | + python3 -m pip install -U betterproto-beta9 sudo apt install protobuf-compiler sudo apt install golang-goprotobuf-dev go get google.golang.org/grpc/cmd/protoc-gen-go-grpc