From 9569fa1889c2e5d4a7d67ff8490048d0720fb72b Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Dec 2025 00:34:31 +0000 Subject: [PATCH 1/2] Update from copier (2025-12-14T00:34:31) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index feca7b9..34f543b 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 55f9353 +_commit: b74d698 _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: python diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 914dc25..c849a5d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -56,6 +56,7 @@ jobs: version: ${{ matrix.python-version }} - name: Install dependencies +<<<<<<< before updating run: pip install cibuildwheel - name: Python Wheel Steps (linux) @@ -82,6 +83,24 @@ jobs: - name: Upload Wheel uses: actions/upload-artifact@v5 +======= + run: make develop + + - name: Lint + run: make lint + + - name: Checks + run: make checks + + - name: Build + run: make build + + - name: Test + run: make coverage + + - name: Upload test results (Python) + uses: actions/upload-artifact@v6 +>>>>>>> after updating with: name: dist-${{ runner.os }}-${{ runner.arch }}-${{ matrix.python-version }} path: dist/*.whl @@ -97,5 +116,12 @@ jobs: - name: Install test dependencies run: python -m pip install pytest rich typer +<<<<<<< before updating - name: Test Wheel run: python -m pytest -vvv verilator/tests +======= + - uses: actions/upload-artifact@v6 + with: + name: dist-${{matrix.os}} + path: dist +>>>>>>> after updating From e2bb2c5de6b65bffff11e93deb57d72ec4bdc871 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sat, 13 Dec 2025 19:49:25 -0500 Subject: [PATCH 2/2] Refactor build workflow to streamline steps Removed unnecessary build steps and updated artifact upload. --- .github/workflows/build.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c849a5d..e8adb83 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -56,7 +56,6 @@ jobs: version: ${{ matrix.python-version }} - name: Install dependencies -<<<<<<< before updating run: pip install cibuildwheel - name: Python Wheel Steps (linux) @@ -82,25 +81,7 @@ jobs: if: ${{ matrix.os == 'windows-2022' }} - name: Upload Wheel - uses: actions/upload-artifact@v5 -======= - run: make develop - - - name: Lint - run: make lint - - - name: Checks - run: make checks - - - name: Build - run: make build - - - name: Test - run: make coverage - - - name: Upload test results (Python) uses: actions/upload-artifact@v6 ->>>>>>> after updating with: name: dist-${{ runner.os }}-${{ runner.arch }}-${{ matrix.python-version }} path: dist/*.whl @@ -116,12 +97,5 @@ jobs: - name: Install test dependencies run: python -m pip install pytest rich typer -<<<<<<< before updating - name: Test Wheel run: python -m pytest -vvv verilator/tests -======= - - uses: actions/upload-artifact@v6 - with: - name: dist-${{matrix.os}} - path: dist ->>>>>>> after updating