From 61f25062dbeaadea6fbc8250284bee5adba5aace Mon Sep 17 00:00:00 2001 From: avifenesh Date: Tue, 5 Nov 2024 14:32:02 +0000 Subject: [PATCH] fix py wrapper build in container test 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