Skip to content

Commit

Permalink
Fix broken artifact upload (#824)
Browse files Browse the repository at this point in the history
- Fixes upload-artifact and download-artifact usage to account for their
breaking changes
- Fixes sinter not declaring recursive inclusions in its manifest
  • Loading branch information
Strilanc authored Sep 11, 2024
1 parent b6174b7 commit f3f4876
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
37 changes: 24 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,25 +153,36 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python dev/overwrite_dev_versions_with_date.py
- run: mkdir -p output/stim
- run: mkdir -p output/stimcirq
- run: mkdir -p output/sinter
- run: python -m pip install pybind11~=2.11.1 cibuildwheel~=2.16.2 setuptools wheel
- run: python -m cibuildwheel --print-build-identifiers
- run: python -m cibuildwheel --output-dir output/stim
- run: python -m cibuildwheel --output-dir dist
- uses: actions/[email protected]
with:
name: "dist-${{ matrix.os_dist.os }}-${{ matrix.os_dist.dist }}-${{ matrix.os_dist.macosarch }}"
path: dist/*
build_sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python -m pip install setuptools pybind11~=2.11.1
- run: python dev/overwrite_dev_versions_with_date.py
- run: mkdir output
- run: python setup.py sdist
- run: cd glue/cirq && python setup.py sdist
- run: cd glue/sample && python setup.py sdist
- run: mv dist/* output/stim
- run: mv glue/cirq/dist/* output/stimcirq
- run: mv glue/sample/dist/* output/sinter
- uses: actions/[email protected]
with:
name: "dist-${{ matrix.os_dist.os }}-${{ matrix.os_dist.dist }}-${{ matrix.os_dist.macosarch }}"
path: |
./output/stimcirq/*.tar.gz
./output/sinter/*.tar.gz
./output/stim/*
name: "dist-sdist-sinter"
path: glue/sample/dist/*.tar.gz
- uses: actions/[email protected]
with:
name: "dist-sdist-stimcirq"
path: glue/cirq/dist/*.tar.gz
- uses: actions/[email protected]
with:
name: "dist-sdist-stim"
path: dist/*.tar.gz
check_sdist_installs:
runs-on: ubuntu-latest
steps:
Expand All @@ -181,7 +192,7 @@ jobs:
- run: python setup.py sdist
- run: pip install dist/*.tar.gz
merge_upload_artifacts:
needs: ["build_dist"]
needs: ["build_dist", "build_sdist"]
runs-on: ubuntu-latest
steps:
- name: Merge Artifacts
Expand Down
1 change: 1 addition & 0 deletions glue/sample/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include src *.py

0 comments on commit f3f4876

Please sign in to comment.