-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patch reset cavern sg on new stage start #25
Changes from all commits
253ac35
252f20a
e9944ed
e08aeb7
310ad0c
a577b3b
540eaec
f62b4fc
8a57601
ec92f04
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
name: Build wheels (intermediate) | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*patch*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
wheels: | ||
build_wheels: | ||
name: Build distribution 📦 on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, macOS-13, macOS-latest, ubuntu-latest] | ||
# macos-13 is an intel runner, macos-14 is apple silicon | ||
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | ||
with: | ||
egress-policy: audit | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-* | ||
CIBW_SKIP: "*-win32 *-manylinux_i686 pp* *-musllinux*" | ||
- uses: actions/upload-artifact@v4 | ||
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1 | ||
|
||
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | ||
with: | ||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | ||
path: ./wheelhouse/*.whl |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not part of the bugfix, this change helps VSCode users not check in private workspace files |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,3 +168,4 @@ _local/ | |
docs/apidocs/pymodule/** | ||
docs/apidocs/clibrary/** | ||
DEPLOY.bat | ||
**/*.code-workspace |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not part of the bugfix, this provides links to badges on pypi |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Related to the bugfix. This moved the assignment to the outside of the for loop (which was unnecessary) Unrelated to the bugfix, adds more explicit license details |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updates warnings and does not reset cavern sg on "repeat"; this returns sansmic to previous behavior. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug fix: removes the override-to-0 of the cavern SG on "REPEAT" stages that was in the Stage creation section. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug fix: verifies that value was not changed when specified as non-zero in a REPEAT section. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is pulling in build process changes and is not related to the bug fix