From b481a2eb9835a94909947bdc5806449489db076a Mon Sep 17 00:00:00 2001 From: Rohanjames1997 Date: Wed, 26 Feb 2025 13:59:24 -0600 Subject: [PATCH] Run a smoke test on a Github-hosted Arm runner as well * Update ci.yaml * Update ci.yaml * Update ci.yaml * Update ci.yaml --- .github/workflows/ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 288000914..9103c8171 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,7 +38,10 @@ env: jobs: python_sdist: name: pyyaml sdist - runs-on: ubuntu-22.04 + strategy: + matrix: + os: [ubuntu-22.04, ubuntu-22.04-arm] + runs-on: ${{ matrix.os }} outputs: artifact_name: ${{ steps.build_sdist.outputs.artifact_name }} steps: @@ -65,11 +68,11 @@ jobs: - name: Upload sdist artifact uses: actions/upload-artifact@v4 + if: matrix.os == 'ubuntu-22.04' with: name: ${{ steps.build_sdist.outputs.artifact_name }} path: dist/${{ steps.build_sdist.outputs.artifact_name }} if-no-files-found: error - # always upload the sdist artifact- all the wheel build jobs require it make_linux_libyaml_matrix: runs-on: ubuntu-22.04