forked from Qiskit/qiskit-aer
-
Notifications
You must be signed in to change notification settings - Fork 1
25 lines (24 loc) · 1.22 KB
/
build.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
name: Build
on: push
jobs:
wheel-rocm:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.8'
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==2.16.2
- name: Build wheels
env:
CIBW_BEFORE_ALL: "yum install -y yum-utils openssh-clients git-lfs openblas-devel clang && wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && rpm -ivh epel-release-latest-8.noarch.rpm && crb enable && yum install -y https://repo.radeon.com/amdgpu-install/6.0.2/rhel/8.8/amdgpu-install-6.0.60002-1.el8.noarch.rpm && yum clean all && yum install -y amdgpu-dkms && yum install -y rocm"
CIBW_SKIP: "*-manylinux_i686 pp* cp36* cp37* cp38* cp39* cp310* cp311* *musllinux*"
CIBW_ENVIRONMENT: QISKIT_AER_PACKAGE_NAME=qiskit-aer-rocm MAKE_VERBOSE_MAKEFILE=true AER_THRUST_BACKEND=ROCM AER_CIBUILD=true ROCM_PATH="/opt/rocm" CMAKE_CXX_COMPILER="/opt/rocm/bin/clang++"
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl