Skip to content

Commit

Permalink
pipeline debug
Browse files Browse the repository at this point in the history
  • Loading branch information
teqdruid committed May 18, 2024
1 parent cecf9c9 commit f4fe6a3
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/pycdePublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
# much.
# If individual jobs fail due to timeouts or disconnects, please report to
# John and re-run the job.
runs-on:
- self-hosted
- 1ES.Pool=1ES-CIRCT-builds
- 1ES.ImageOverride=CIRCT-StdUbuntu2204
# runs-on: ubuntu-latest
# runs-on:
# - self-hosted
# - 1ES.Pool=1ES-CIRCT-builds
# - 1ES.ImageOverride=CIRCT-StdUbuntu2204
runs-on: ubuntu-latest
strategy:
# Keep the 'matrix' strategy with one data point to make it obvious that
# this is one point in the overall matrix.
Expand Down Expand Up @@ -73,10 +73,12 @@ jobs:
echo "Building wheel"
cibuildwheel --output-dir wheelhouse frontends/PyCDE
- name: Upload Binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
name: python-wheels
path: ./wheelhouse/*.whl
retention-days: 7
if-no-files-found: error

# Build PyCDE, test it, and publish it to PyPI.
build-circt-windows:
Expand Down Expand Up @@ -145,8 +147,11 @@ jobs:
run: |
echo "Building wheel"
"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && python3 -m cibuildwheel --output-dir wheelhouse frontends/PyCDE
- name: Upload Binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
name: python-wheels
path: ./wheelhouse/*.whl
retention-days: 7
if-no-files-found: error

0 comments on commit f4fe6a3

Please sign in to comment.