-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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
Showing
2 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
recursive-include src *.py |