From 7f0957a440f471ebeb09c41a4f6c98f5a3a98dad Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Fri, 22 Mar 2024 15:07:06 -0400 Subject: [PATCH] install into container --- .github/workflows/python-core-wheels.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-core-wheels.yml b/.github/workflows/python-core-wheels.yml index 4f0faebfc..97f2b7a16 100644 --- a/.github/workflows/python-core-wheels.yml +++ b/.github/workflows/python-core-wheels.yml @@ -18,17 +18,15 @@ jobs: python-version: 3.8 architecture: x64 - - name: Install openssl - run: | - sudo apt-get update - sudo apt-get install libssl-dev - - name: Build wheels uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} manylinux: auto args: --release --out dist -m python/core/Cargo.toml + before-script-linux: | + sudo apt-get update + sudo apt-get install --yes --upgrade build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools - name: Install built wheel if: matrix.target == 'x86_64'