|
| 1 | +name: conda_build |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + tags: |
| 6 | + - v* |
| 7 | + branches: |
| 8 | + - master |
| 9 | + pull_request: |
| 10 | + branches: |
| 11 | + - master |
| 12 | + |
| 13 | +concurrency: |
| 14 | + group: build_conda-${{ github.head_ref }} |
| 15 | + cancel-in-progress: true |
| 16 | + |
| 17 | +env: |
| 18 | + COINCURVE_UPSTREAM_REF: __no_upstream__ |
| 19 | + COINCURVE_IGNORE_SYSTEM_LIB: '0' |
| 20 | + # conda-forge only has SHARED libsecp256k1 |
| 21 | + COINCURVE_SECP256K1_BUILD: 'SHARED' |
| 22 | + CIBW_ENVIRONMENT_PASS_LINUX: > |
| 23 | + COINCURVE_UPSTREAM_REF |
| 24 | + COINCURVE_IGNORE_SYSTEM_LIB |
| 25 | + COINCURVE_SECP256K1_BUILD |
| 26 | + CIBW_PROJECT_REQUIRES_PYTHON: '>=3.8' |
| 27 | + CIBW_BEFORE_ALL_MACOS: ./.github/scripts/install-macos-build-deps.sh |
| 28 | + CIBW_TEST_REQUIRES: pytest pytest-benchmark |
| 29 | + CIBW_TEST_COMMAND: > |
| 30 | + python -c |
| 31 | + "from coincurve import PrivateKey; |
| 32 | + a=PrivateKey(); |
| 33 | + b=PrivateKey(); |
| 34 | + assert a.ecdh(b.public_key.format())==b.ecdh(a.public_key.format()) |
| 35 | + " && |
| 36 | + python -m pytest {project} |
| 37 | + CIBW_TEST_SKIP: "*-macosx_arm64" |
| 38 | + CIBW_SKIP: > |
| 39 | + pp* |
| 40 | +
|
| 41 | +jobs: |
| 42 | + test: |
| 43 | + name: Test with Conda libsecp256k1 |
| 44 | + runs-on: ubuntu-latest |
| 45 | + defaults: |
| 46 | + run: |
| 47 | + shell: bash -el {0} |
| 48 | + env: |
| 49 | + PYTHON_VERSION: '3.12' |
| 50 | + |
| 51 | + steps: |
| 52 | + - uses: actions/checkout@v4 |
| 53 | + |
| 54 | + - name: Install Miniconda |
| 55 | + uses: conda-incubator/setup-miniconda@v3 |
| 56 | + with: |
| 57 | + environment-file: ./.conda/environment-dev.yml |
| 58 | + activate-environment: coincurve-with-conda |
| 59 | + python-version: ${{ env.PYTHON_VERSION }} |
| 60 | + auto-activate-base: false |
| 61 | + |
| 62 | + - name: Check style and typing |
| 63 | + run: tox -e lint,typing |
| 64 | + |
| 65 | + - name: Run tests |
| 66 | + run: LD_LIBRARY_PATH=$CONDA_PREFIX/lib tox -e ${PYTHON_VERSION} |
| 67 | + |
| 68 | + - name: Run benchmarks |
| 69 | + run: LD_LIBRARY_PATH=$CONDA_PREFIX/lib tox -e bench |
| 70 | + |
| 71 | + linux-wheels-standard: |
| 72 | + name: Build Linux wheels |
| 73 | + needs: |
| 74 | + - test |
| 75 | + runs-on: ubuntu-latest |
| 76 | + defaults: |
| 77 | + run: |
| 78 | + shell: bash -el {0} |
| 79 | + |
| 80 | + steps: |
| 81 | + - uses: actions/checkout@v4 |
| 82 | + |
| 83 | + - name: Install Miniconda |
| 84 | + uses: conda-incubator/setup-miniconda@v3 |
| 85 | + with: |
| 86 | + environment-file: ./.conda/environment-dev.yml |
| 87 | + activate-environment: coincurve-with-conda |
| 88 | + python-version: ${{ env.PYTHON_VERSION }} |
| 89 | + auto-activate-base: false |
| 90 | + |
| 91 | + - name: Build sdist & wheel |
| 92 | + run: | |
| 93 | + conda install python-build |
| 94 | + python -m build --outdir conda_dist |
| 95 | +
|
| 96 | + - name: Test wheel in a clean environment |
| 97 | + run: | |
| 98 | + conda install pip |
| 99 | + pip install conda_dist/*.whl |
| 100 | + python -m pytest tests |
| 101 | + |
0 commit comments