-
Notifications
You must be signed in to change notification settings - Fork 317
45 lines (38 loc) · 1.2 KB
/
esiRuntimePublish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Publish ESI Runtime
on:
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels with ${{ matrix.config.cibw_build }}
runs-on: ${{ matrix.config.os }}
if: github.repository == 'llvm/circt'
strategy:
fail-fast: false
matrix:
config:
- os: ubuntu-20.04
cibw_build: cp38-manylinux_x86_64
# - os: ubuntu-20.04
# cibw_build: cp310-manylinux_x86_64
steps:
- name: Get CIRCT
uses: actions/checkout@v3
with:
submodules: false
- name: Setup Python
uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.2
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse ./lib/Dialect/ESI/runtime
env:
CIBW_BUILD: ${{ matrix.config.cibw_build }}
CIBW_MANYLINUX_X86_64_IMAGE: ghcr.io/circt/images/pycde-build
SETUPTOOLS_SCM_DEBUG: True
- name: Upload (stage) wheels as artifacts
uses: actions/upload-artifact@v3
with:
name: python-wheels
path: ./wheelhouse/*.whl
retention-days: 7
if-no-files-found: error