Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down