-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1078 from chriseclectic/backports-0.7.2
Backports 0.7.2 release
- Loading branch information
Showing
32 changed files
with
804 additions
and
507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Build | ||
on: | ||
push: | ||
branches: [master, 'stable/*'] | ||
pull_request: | ||
branches: [master, 'stable/*'] | ||
jobs: | ||
standalone: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: ["macOS-latest", "ubuntu-latest", "windows-latest"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install deps | ||
run: pip install "urllib3<1.26" conan | ||
- name: Install openblas | ||
run: | | ||
set -e | ||
sudo apt-get update | ||
sudo apt-get install -y libopenblas-dev | ||
shell: bash | ||
if: runner.os == 'Linux' | ||
- name: Add msbuild to PATH | ||
uses: microsoft/setup-msbuild@v1.0.2 | ||
if: runner.os == 'Windows' | ||
- name: Compile Standalone Windows | ||
run: | | ||
set -e | ||
mkdir out; cd out; cmake .. -DBUILD_TESTS=1 | ||
cmake --build . --config Release | ||
shell: bash | ||
if: runner.os == 'Windows' | ||
- name: Compile Standalone | ||
run: | | ||
set -e | ||
mkdir out; cd out; cmake .. -DBUILD_TESTS=1 | ||
make | ||
shell: bash | ||
if: runner.os != 'Windows' | ||
- name: Run Unit Tests | ||
run: | | ||
cd out/bin | ||
for test in test* | ||
do echo $test | ||
if ! ./$test | ||
then | ||
ERR=1 | ||
fi | ||
done | ||
if [ ! -z "$ERR" ] | ||
then | ||
exit 1 | ||
fi | ||
shell: bash | ||
wheel: | ||
runs-on: ${{ matrix.os }} | ||
needs: ["standalone"] | ||
strategy: | ||
matrix: | ||
os: ["macOS-latest", "ubuntu-latest"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- name: Install deps | ||
run: python -m pip install -U cibuildwheel==1.7.0 | ||
- name: Build Wheels | ||
env: | ||
CIBW_BEFORE_ALL_LINUX: "yum install -y https://archives.fedoraproject.org/pub/archive/epel/6/x86_64/epel-release-6-8.noarch.rpm && yum install -y openblas-devel" | ||
CIBW_BEFORE_BUILD: "pip install -U virtualenv pybind11" | ||
CIBW_SKIP: "cp27-* cp34-* cp35-* cp39-* pp*" | ||
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux2010_x86_64:2020-12-03-912b0de" | ||
CIBW_MANYLINUX_I686_IMAGE: "quay.io/pypa/manylinux2010_i686:2020-12-03-912b0de" | ||
CIBW_TEST_COMMAND: "python3 {project}/tools/verify_wheels.py" | ||
CIBW_TEST_REQUIRES: "git+https://github.com/Qiskit/qiskit-terra.git" | ||
run: cibuildwheel --output-dir wheelhouse | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./wheelhouse/*.whl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Docs and Tutorial | ||
on: | ||
push: | ||
branches: [master, 'stable/*'] | ||
pull_request: | ||
branches: [master, 'stable/*'] | ||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
strategy: | ||
matrix: | ||
python-version: [3.7] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Pip cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-${{ matrix.python-version}}-pip-docs-${{ hashFiles('setup.py','requirements-dev.txt','constraints.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ matrix.python-version}}-pip-docs- | ||
${{ runner.os }}-${{ matrix.python-version}}-pip- | ||
${{ runner.os }}-${{ matrix.python-version}}- | ||
- name: Install Deps | ||
run: | | ||
set -e | ||
pip install -U pip virtualenv wheel | ||
pip install -U tox | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential libopenblas-dev | ||
shell: bash | ||
- name: Run Docs Build | ||
run: tox -edocs | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: html_docs | ||
path: docs/_build/html | ||
tutorials: | ||
runs-on: ubuntu-latest | ||
needs: [docs] | ||
strategy: | ||
matrix: | ||
python-version: [3.7] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Pip cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~\AppData\Local\pip\Cache | ||
key: ${{ runner.os }}-${{ matrix.python-version}}-pip-tutorials-${{ hashFiles('setup.py','requirements-dev.txt','constraints.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ matrix.python-version}}-pip-tutorials- | ||
${{ runner.os }}-${{ matrix.python-version}}-pip- | ||
${{ runner.os }}-${{ matrix.python-version}}}- | ||
- name: Setup tutorials job | ||
run: | | ||
set -e | ||
git clone https://github.com/Qiskit/qiskit-tutorials --depth=1 | ||
python -m pip install --upgrade pip wheel | ||
pip install -U -r requirements-dev.txt -c constraints.txt | ||
pip install -c constraints.txt git+https://github.com/Qiskit/qiskit-terra | ||
pip install -c constraints.txt . | ||
pip install -U "qiskit-ibmq-provider" "z3-solver" "qiskit-ignis" "qiskit-aqua" "pyscf<1.7.4" "matplotlib<3.3.0" jupyter pylatexenc sphinx nbsphinx sphinx_rtd_theme cvxpy -c constraints.txt | ||
python setup.py build_ext --inplace | ||
sudo apt install -y graphviz pandoc libopenblas-dev | ||
pip check | ||
shell: bash | ||
- name: Run Tutorials | ||
run: | | ||
set -e | ||
cd qiskit-tutorials | ||
rm -rf tutorials/chemistry tutorials/circuits tutorials/circuits_advanced tutorials/finance tutorials/optimization tutorials/algorithms tutorials/operators tutorials/noise | ||
sphinx-build -b html . _build/html | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: tutorials_html | ||
path: qiskit-tutorials/_build/html |
Oops, something went wrong.