From e2746eeec55f95ea5f93b93d9224216c011ed22a Mon Sep 17 00:00:00 2001 From: Avi Fenesh <55848801+avifenesh@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:17:21 +0200 Subject: [PATCH] fix py wrapper build in container test (#2608) Signed-off-by: avifenesh --- .github/workflows/install-shared-dependencies/action.yml | 2 +- .github/workflows/python.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/install-shared-dependencies/action.yml b/.github/workflows/install-shared-dependencies/action.yml index 1e64d939a3..57e750ccee 100644 --- a/.github/workflows/install-shared-dependencies/action.yml +++ b/.github/workflows/install-shared-dependencies/action.yml @@ -38,7 +38,7 @@ runs: if: "${{ inputs.os == 'macos' }}" run: | brew update - brew install git openssl coreutils + brew install openssl coreutils - name: Install software dependencies for Ubuntu GNU shell: bash diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 46c3d8e252..7a12488650 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -274,8 +274,8 @@ jobs: - name: Build Python wrapper uses: ./.github/workflows/build-python-wrapper with: - os: ubuntu - target: aarch64-unknown-linux-gnu + os: ${{ matrix.host.OS }} + target: ${{ matrix.host.TARGET }} github-token: ${{ secrets.GITHUB_TOKEN }} - name: Test with pytest