SLEAP v1.3.4 #68
Workflow file for this run
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
# PyPI and conda package builds on release. | |
name: Build | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
name: Build package from release (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-22.04", "windows-2022", "macos-latest"] | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrixinclude | |
include: | |
# Use this condarc as default | |
- condarc: .conda/condarc.yaml | |
# Use special condarc if macos | |
- os: "macos-latest" | |
condarc: .conda_mac/condarc.yaml | |
steps: | |
# Setup | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Miniconda | |
uses: conda-incubator/[email protected] | |
with: | |
miniforge-version: latest | |
condarc-file: ${{ matrix.condarc }} | |
python-version: 3.9 | |
environment-file: environment_build.yml | |
activate-environment: sleap_ci | |
conda-solver: "libmamba" | |
- name: Print environment info | |
shell: bash -l {0} | |
run: | | |
which python | |
conda info | |
# Build pip wheel (Ubuntu) | |
- name: Build pip wheel (Ubuntu) | |
if: matrix.os == 'ubuntu-22.04' | |
shell: bash -l {0} | |
run: | | |
python setup.py bdist_wheel | |
# Upload pip wheel (Ubuntu) | |
- name: Upload pip wheel (Ubuntu) | |
if: matrix.os == 'ubuntu-22.04' | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
shell: bash -l {0} | |
run: | | |
twine upload -u __token__ -p "$PYPI_TOKEN" dist/* --non-interactive --skip-existing --disable-progress-bar | |
# # Build conda package (Ubuntu) | |
# - name: Build conda package (Ubuntu) | |
# if: matrix.os == 'ubuntu-22.04' | |
# shell: bash -l {0} | |
# run: | | |
# conda build .conda --output-folder build | |
# # Build conda package (Windows) | |
# - name: Build conda package (Windows) | |
# if: matrix.os == 'windows-2022' | |
# shell: powershell | |
# run: | | |
# conda build .conda --output-folder build | |
# # Build conda package (Mac) | |
# - name: Build conda package (Mac) | |
# if: matrix.os == 'macos-latest' | |
# shell: bash -l {0} | |
# run: | | |
# conda build .conda_mac --output-folder build | |
# # Login to conda (Ubuntu) | |
# - name: Login to Anaconda (Ubuntu) | |
# if: matrix.os == 'ubuntu-22.04' | |
# env: | |
# ANACONDA_LOGIN: ${{ secrets.ANACONDA_LOGIN }} | |
# shell: bash -l {0} | |
# run: | | |
# yes 2>/dev/null | anaconda login --username sleap --password "$ANACONDA_LOGIN" || true | |
# # Login to conda (Windows) | |
# - name: Login to Anaconda (Windows) | |
# if: matrix.os == 'windows-2019' | |
# env: | |
# ANACONDA_LOGIN: ${{ secrets.ANACONDA_LOGIN }} | |
# shell: powershell | |
# run: | | |
# echo "yes" | anaconda login --username sleap --password "$env:ANACONDA_LOGIN" | |
# # Login to conda (Mac) | |
# - name: Login to Anaconda (Mac) | |
# if: matrix.os == 'macos-latest' | |
# env: | |
# ANACONDA_LOGIN: ${{ secrets.ANACONDA_LOGIN }} | |
# shell: bash -l {0} | |
# run: | | |
# yes 2>/dev/null | anaconda login --username sleap --password "$ANACONDA_LOGIN" || true | |
# # Upload conda package (Windows) | |
# - name: Upload conda package (Windows/main) | |
# if: matrix.os == 'windows-2019' && !github.event.release.prerelease | |
# shell: powershell | |
# run: | | |
# anaconda -v upload "build\win-64\*.tar.bz2" | |
# - name: Upload conda package (Windows/dev) | |
# if: matrix.os == 'windows-2019' && github.event.release.prerelease | |
# shell: powershell | |
# run: | | |
# anaconda -v upload "build\win-64\*.tar.bz2" --label dev | |
# # Upload conda package (Ubuntu) | |
# - name: Upload conda package (Ubuntu/main) | |
# if: matrix.os == 'ubuntu-22.04' && !github.event.release.prerelease | |
# shell: bash -l {0} | |
# run: | | |
# anaconda -v upload build/linux-64/*.tar.bz2 | |
# - name: Upload conda package (Ubuntu/dev) | |
# if: matrix.os == 'ubuntu-22.04' && github.event.release.prerelease | |
# shell: bash -l {0} | |
# run: | | |
# anaconda -v upload build/linux-64/*.tar.bz2 --label dev | |
# # Upload conda package (Mac) | |
# - name: Upload conda package (Mac/main) | |
# if: matrix.os == 'macos-latest' && !github.event.release.prerelease | |
# shell: bash -l {0} | |
# run: | | |
# anaconda -v upload build/osx-arm64/*.tar.bz2 --label dev | |
# - name: Upload conda package (Mac/dev) | |
# if: matrix.os == 'macos-latest' && github.event.release.prerelease | |
# shell: bash -l {0} | |
# run: | | |
# anaconda -v upload build/osx-arm64/*.tar.bz2 --label dev | |
# # Logout | |
# - name: Logout from Anaconda | |
# shell: bash -l {0} | |
# run: | | |
# anaconda logout |