@@ -153,25 +153,36 @@ jobs:
153
153
- uses : actions/checkout@v3
154
154
- uses : actions/setup-python@v3
155
155
- 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
159
156
- run : python -m pip install pybind11~=2.11.1 cibuildwheel~=2.16.2 setuptools wheel
160
157
- 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
162
171
- run : python setup.py sdist
163
172
- run : cd glue/cirq && python setup.py sdist
164
173
- 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
168
174
- uses : actions/upload-artifact@v4.4.0
169
175
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
175
186
check_sdist_installs :
176
187
runs-on : ubuntu-latest
177
188
steps :
@@ -181,7 +192,7 @@ jobs:
181
192
- run : python setup.py sdist
182
193
- run : pip install dist/*.tar.gz
183
194
merge_upload_artifacts :
184
- needs : ["build_dist"]
195
+ needs : ["build_dist", "build_sdist" ]
185
196
runs-on : ubuntu-latest
186
197
steps :
187
198
- name : Merge Artifacts
0 commit comments