Skip to content

Commit f3f4876

Browse files
authoredSep 11, 2024··
Fix broken artifact upload (#824)
- Fixes upload-artifact and download-artifact usage to account for their breaking changes - Fixes sinter not declaring recursive inclusions in its manifest
1 parent b6174b7 commit f3f4876

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed
 

‎.github/workflows/ci.yml

+24-13
Original file line numberDiff line numberDiff line change
@@ -153,25 +153,36 @@ jobs:
153153
- uses: actions/checkout@v3
154154
- uses: actions/setup-python@v3
155155
- run: python dev/overwrite_dev_versions_with_date.py
156-
- run: mkdir -p output/stim
157-
- run: mkdir -p output/stimcirq
158-
- run: mkdir -p output/sinter
159156
- run: python -m pip install pybind11~=2.11.1 cibuildwheel~=2.16.2 setuptools wheel
160157
- run: python -m cibuildwheel --print-build-identifiers
161-
- run: python -m cibuildwheel --output-dir output/stim
158+
- run: python -m cibuildwheel --output-dir dist
159+
- uses: actions/upload-artifact@v4.4.0
160+
with:
161+
name: "dist-${{ matrix.os_dist.os }}-${{ matrix.os_dist.dist }}-${{ matrix.os_dist.macosarch }}"
162+
path: dist/*
163+
build_sdist:
164+
runs-on: ubuntu-latest
165+
steps:
166+
- uses: actions/checkout@v3
167+
- uses: actions/setup-python@v3
168+
- run: python -m pip install setuptools pybind11~=2.11.1
169+
- run: python dev/overwrite_dev_versions_with_date.py
170+
- run: mkdir output
162171
- run: python setup.py sdist
163172
- run: cd glue/cirq && python setup.py sdist
164173
- run: cd glue/sample && python setup.py sdist
165-
- run: mv dist/* output/stim
166-
- run: mv glue/cirq/dist/* output/stimcirq
167-
- run: mv glue/sample/dist/* output/sinter
168174
- uses: actions/upload-artifact@v4.4.0
169175
with:
170-
name: "dist-${{ matrix.os_dist.os }}-${{ matrix.os_dist.dist }}-${{ matrix.os_dist.macosarch }}"
171-
path: |
172-
./output/stimcirq/*.tar.gz
173-
./output/sinter/*.tar.gz
174-
./output/stim/*
176+
name: "dist-sdist-sinter"
177+
path: glue/sample/dist/*.tar.gz
178+
- uses: actions/upload-artifact@v4.4.0
179+
with:
180+
name: "dist-sdist-stimcirq"
181+
path: glue/cirq/dist/*.tar.gz
182+
- uses: actions/upload-artifact@v4.4.0
183+
with:
184+
name: "dist-sdist-stim"
185+
path: dist/*.tar.gz
175186
check_sdist_installs:
176187
runs-on: ubuntu-latest
177188
steps:
@@ -181,7 +192,7 @@ jobs:
181192
- run: python setup.py sdist
182193
- run: pip install dist/*.tar.gz
183194
merge_upload_artifacts:
184-
needs: ["build_dist"]
195+
needs: ["build_dist", "build_sdist"]
185196
runs-on: ubuntu-latest
186197
steps:
187198
- name: Merge Artifacts

‎glue/sample/MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include src *.py

0 commit comments

Comments
 (0)
Please sign in to comment.