diff --git a/.github/workflows/_artifacts_linux.yml b/.github/workflows/_artifacts_linux.yml index 06dacf2298..3bbc570bc6 100644 --- a/.github/workflows/_artifacts_linux.yml +++ b/.github/workflows/_artifacts_linux.yml @@ -7,6 +7,10 @@ on: arch: required: true type: string + test_arm64_artifacts: + required: false + type: boolean + default: false env: DOTNET_INSTALL_DIR: "./.dotnet" @@ -46,9 +50,14 @@ jobs: name: Setup QEMU if: inputs.arch == 'arm64' uses: docker/setup-qemu-action@v2 + - + name: Echo + shell: pwsh + run: | + Write-Host "Test ARM64 Artifacts: ${{ inputs.test_arm64_artifacts }}" - name: '[Test Artifacts]' shell: pwsh run: dotnet run/artifacts.dll --target=ArtifactsTest --arch ${{ inputs.arch }} --docker_dotnetversion=${{ matrix.targetFramework }} --docker_distro=${{ matrix.distro }} env: - TEST_ARM64_ARTIFACTS: ${{ secrets.TEST_ARM64_ARTIFACTS }} + TEST_ARM64_ARTIFACTS: ${{ inputs.test_arm64_artifacts }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec59d5a1ad..1a480ae5b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: with: runner: ubuntu-latest arch: ${{ matrix.arch }} - secrets: inherit + test_arm64_artifacts: ${{ vars.TEST_ARM64_ARTIFACTS }} docker_linux_images: needs: [ build ]