From 6cbc797ccce92380dfb932388c35e775d0053bb2 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Mon, 23 Aug 2021 22:13:52 -0700 Subject: [PATCH] build: Fix missing target_arch parameter in build action This was causing failures on arm64, where the build action had an arm-specific clause that was skipped due to the missing parameter. Change-Id: I71b7fb15120855c444749dc2216b5f19f0561f6e --- .github/workflows/build_and_test.yaml | 1 + .github/workflows/github_release.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index 481d0e5dfb..26f4bfcc08 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -87,6 +87,7 @@ jobs: uses: ./src/.github/workflows/custom-actions/build-packager with: os_name: ${{ matrix.os_name }} + target_arch: ${{ matrix.target_arch }} lib_type: ${{ matrix.lib_type }} build_type: ${{ matrix.build_type }} build_type_suffix: ${{ matrix.build_type_suffix }} diff --git a/.github/workflows/github_release.yaml b/.github/workflows/github_release.yaml index 9103417882..235e0f7c5b 100644 --- a/.github/workflows/github_release.yaml +++ b/.github/workflows/github_release.yaml @@ -161,6 +161,7 @@ jobs: uses: ./src/.github/workflows/custom-actions/build-packager with: os_name: ${{ matrix.os_name }} + target_arch: ${{ matrix.target_arch }} lib_type: ${{ matrix.lib_type }} build_type: ${{ matrix.build_type }} build_type_suffix: ${{ matrix.build_type_suffix }}