Skip to content

Update scipy_wrapper (#2159) #1

Update scipy_wrapper (#2159)

Update scipy_wrapper (#2159) #1

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- master
- 'release/**'
tags:
- '*'
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
# Only cancels-in-progress on PRs (head_ref only defined in PR, fallback run_id always unique)
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check --format=github .
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-18.04, macos-10.15, windows-2019 ]
python-version: [ 3.7, 3.9, "3.10" ]
include:
- os: ubuntu-18.04
python-version: 3.8
openmp: "True"
- os: ubuntu-18.04
python-version: 3.8
- os: macos-10.15
python-version: 3.8
single_action_config: "True"
- os: windows-2019
python-version: 3.8
env:
RUNNER_OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
SINGLE_ACTION_CONFIG: "${{ matrix.single_action_config == 'True' && 'True' || 'False' }}"
USE_OPENMP: "${{ matrix.openmp == 'True' && 'True' || 'False' }}"
MOSEK_CI_BASE64: ${{ secrets.MOSEK_CI_BASE64 }}
steps:
- uses: actions/checkout@v2
- name: Set Additional Envs
run: |
echo "PYTHON_SUBVERSION=$(echo $PYTHON_VERSION | cut -c 3-)" >> $GITHUB_ENV
echo "DEPLOY=$( [[ $GITHUB_EVENT_NAME == 'push' && $GITHUB_REF == 'refs/tags'* ]] && echo 'True' || echo 'False' )" >> $GITHUB_ENV
echo $MOSEK_CI_BASE64 | base64 -d > mosek.lic
echo "MOSEKLM_LICENSE_FILE=$( [[ $RUNNER_OS == 'macOS' ]] && echo $(pwd)/mosek.lic || echo $(realpath mosek.lic) )" >> $GITHUB_ENV
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge,anaconda
- name: Install
run: |
source continuous_integration/install_dependencies.sh
- name: Test
run: |
source continuous_integration/test_script.sh
- name: Upload coverage file
uses: actions/upload-artifact@v2
if: ${{env.SINGLE_ACTION_CONFIG == 'True'}}
with:
name: coverage
path: coverage.xml
build_wheels:
needs: build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-18.04, macos-10.15, windows-2019 ]
python-version: [ 3.7, 3.9, "3.10" ]
include:
- os: ubuntu-18.04
python-version: 3.8
- os: macos-10.15
python-version: 3.8
single_action_config: "True"
- os: windows-2019
python-version: 3.8
env:
RUNNER_OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
SINGLE_ACTION_CONFIG: "${{ matrix.single_action_config == 'True' }}"
PYPI_SERVER: ${{ secrets.PYPI_SERVER }}
PYPI_USER: ${{ secrets.PYPI_USER }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set Additional Envs
shell: bash
run: |
echo "PYTHON_SUBVERSION=$(echo $PYTHON_VERSION | cut -c 3-)" >> $GITHUB_ENV
echo "DEPLOY=$( [[ $GITHUB_EVENT_NAME == 'push' && $GITHUB_REF == 'refs/tags'* ]] && echo 'True' || echo 'False' )" >> $GITHUB_ENV
- name: Build wheels
if: ${{github.event_name == 'push' && env.USE_OPENMP != 'True'}}
env:
CIBW_BUILD: "cp3${{env.PYTHON_SUBVERSION}}-*"
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
CIBW_ARCHS_MACOS: x86_64 universal2
uses: joerick/cibuildwheel@v2.3.1
- name: Build source
if: ${{github.event_name == 'push' && env.SINGLE_ACTION_CONFIG == 'True'}}
run: |
python setup.py sdist --dist-dir=wheelhouse
- name: Check wheels
if: ${{github.event_name == 'push' && env.USE_OPENMP != 'True'}}
shell: bash
run: |
python -m pip install --upgrade twine
twine check wheelhouse/*
- name: Release to pypi
if: ${{env.DEPLOY == 'True' && env.USE_OPENMP != 'True'}}
shell: bash
run: |
twine upload --skip-existing --repository-url $PYPI_SERVER wheelhouse/* -u $PYPI_USER -p $PYPI_PASSWORD
- name: Upload artifacts to github
if: ${{github.event_name == 'push' && env.USE_OPENMP != 'True'}}
uses: actions/upload-artifact@v1
with:
name: wheels
path: ./wheelhouse
build_cvxpy-base:
needs: build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-18.04, macos-10.15, windows-2019 ]
python-version: [ 3.7, 3.9, "3.10" ]
include:
- os: ubuntu-18.04
python-version: 3.8
pip_intall: "True"
- os: macos-10.15
python-version: 3.8
pip_install: "True"
single_action_config: "True"
- os: windows-2019
python-version: 3.8
pip_install: "True"
env:
PYTHON_VERSION: ${{ matrix.python-version }}
SINGLE_ACTION_CONFIG: "${{ matrix.single_action_config == 'True' }}"
PIP_INSTALL: "${{ matrix.pip_install == 'True' }}"
PYPI_SERVER: ${{ secrets.PYPI_SERVER }}
PYPI_USER: ${{ secrets.PYPI_USER }}
PYPI_BASE_PASSWORD: ${{ secrets.PYPI_BASE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set Additional Envs
shell: bash
run: |
echo "PYTHON_SUBVERSION=$(echo $PYTHON_VERSION | cut -c 3-)" >> $GITHUB_ENV
echo "DEPLOY=$( [[ $GITHUB_EVENT_NAME == 'push' && $GITHUB_REF == 'refs/tags'* ]] && echo 'True' || echo 'False' )" >> $GITHUB_ENV
- name: Adapt setup.py
shell: bash
run: |
# Mac has a different syntax for sed -i, this works across oses
sed -i.bak -e "s/name='cvxpy',/name='cvxpy-base',/g" setup.py
sed -i.bak '/osqp >= /d' setup.py
sed -i.bak '/ecos >= /d' setup.py
sed -i.bak '/scs >= /d' setup.py
rm -rf setup.py.bak
- name: Verify that we can build by pip-install on each OS.
if: ${{env.PIP_INSTALL == 'True'}}
run: |
pip install . pytest cplex
pytest cvxpy/tests/test_conic_solvers.py -k 'TestCPLEX'
- name: Build wheels
if: ${{github.event_name == 'push'}}
env:
CIBW_BUILD: "cp3${{env.PYTHON_SUBVERSION}}-*"
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
CIBW_ARCHS_MACOS: x86_64 universal2
uses: joerick/cibuildwheel@v2.3.1
- name: Build source
if: ${{github.event_name == 'push' && env.SINGLE_ACTION_CONFIG == 'True'}}
run: |
python setup.py sdist --dist-dir=wheelhouse
- name: Check wheels
shell: bash
if: ${{github.event_name == 'push'}}
run: |
python -m pip install --upgrade twine
twine check wheelhouse/*
- name: Release to pypi
shell: bash
if: ${{env.DEPLOY == 'True'}}
run: |
twine upload --skip-existing --repository-url $PYPI_SERVER wheelhouse/* -u $PYPI_USER -p $PYPI_BASE_PASSWORD
- name: Upload artifacts to github
if: ${{github.event_name == 'push'}}
uses: actions/upload-artifact@v1
with:
name: wheels-base
path: ./wheelhouse
sonarcloud:
needs: build
name: SonarCloud
runs-on: ubuntu-latest
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/download-artifact@v2
with:
name: coverage
- name: Check if environment variable exists
run: |
echo "RUN_SONAR=$( [[ -n "$SONAR_TOKEN" ]] && echo 'True' || echo 'False' )" >> $GITHUB_ENV
- name: SonarCloud Scan
if: ${{env.RUN_SONAR == 'True'}}
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}