Drop support for Python 3.8, enable 3.12 in the wheel builds #165
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
arm64-manylinux228-py312: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dbhi/qus/action@main | |
- name: Build | |
# Use Docker Command Directly to take more control over the platform | |
run: > | |
docker run \ | |
--env PYGMO_BUILD_TYPE=Python312 \ | |
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \ | |
--env GITHUB_REF=${GITHUB_REF} \ | |
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \ | |
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \ | |
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \ | |
--workdir ${GITHUB_WORKSPACE} \ | |
--platform linux/arm64 \ | |
pagmo2/manylinux228_aarch64_with_deps:latest \ | |
bash tools/gha_manylinux.sh | |
arm64-manylinux228-py311: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dbhi/qus/action@main | |
- name: Build | |
# Use Docker Command Directly to take more control over the platform | |
run: > | |
docker run \ | |
--env PYGMO_BUILD_TYPE=Python311 \ | |
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \ | |
--env GITHUB_REF=${GITHUB_REF} \ | |
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \ | |
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \ | |
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \ | |
--workdir ${GITHUB_WORKSPACE} \ | |
--platform linux/arm64 \ | |
pagmo2/manylinux228_aarch64_with_deps:latest \ | |
bash tools/gha_manylinux.sh | |
arm64-manylinux228-py310: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dbhi/qus/action@main | |
- name: Build | |
# Use Docker Command Directly to take more control over the platform | |
run: > | |
docker run \ | |
--env PYGMO_BUILD_TYPE=Python310 \ | |
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \ | |
--env GITHUB_REF=${GITHUB_REF} \ | |
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \ | |
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \ | |
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \ | |
--workdir ${GITHUB_WORKSPACE} \ | |
--platform linux/arm64 \ | |
pagmo2/manylinux228_aarch64_with_deps:latest \ | |
bash tools/gha_manylinux.sh | |
arm64-manylinux228-py39: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dbhi/qus/action@main | |
- name: Build | |
# Use Docker Command Directly to take more control over the platform | |
run: > | |
docker run \ | |
--env PYGMO_BUILD_TYPE=Python39 \ | |
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \ | |
--env GITHUB_REF=${GITHUB_REF} \ | |
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \ | |
--env TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} \ | |
--volume ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \ | |
--workdir ${GITHUB_WORKSPACE} \ | |
--platform linux/arm64 \ | |
pagmo2/manylinux228_aarch64_with_deps:latest \ | |
bash tools/gha_manylinux.sh | |
amd64-manylinux228-py312: | |
runs-on: ubuntu-latest | |
container: | |
image: pagmo2/manylinux228_x86_64_with_deps:latest | |
env: | |
PYGMO_BUILD_TYPE: "Python312" | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: bash tools/gha_manylinux.sh | |
amd64-manylinux228-py311: | |
runs-on: ubuntu-latest | |
container: | |
image: pagmo2/manylinux228_x86_64_with_deps:latest | |
env: | |
PYGMO_BUILD_TYPE: "Python311" | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: bash tools/gha_manylinux.sh | |
amd64-manylinux228-py310: | |
runs-on: ubuntu-latest | |
container: | |
image: pagmo2/manylinux228_x86_64_with_deps:latest | |
env: | |
PYGMO_BUILD_TYPE: "Python310" | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: bash tools/gha_manylinux.sh | |
amd64-manylinux228-py39: | |
runs-on: ubuntu-latest | |
container: | |
image: pagmo2/manylinux228_x86_64_with_deps:latest | |
env: | |
PYGMO_BUILD_TYPE: "Python39" | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: bash tools/gha_manylinux.sh | |
macos-10_15-py310: | |
runs-on: macos-10.15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: bash tools/gha_macos-10.15-py310.sh | |
windows-2019-py311: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: 3.11 | |
channels: conda-forge | |
channel-priority: strict | |
- name: Build | |
run: .\tools\gha_windows.ps1 | |
shell: powershell | |
build-and-deploydocs: | |
if: ${{ github.event_name }} == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install and Build 🔧 | |
run: bash tools/gha_deploydocs.sh | |
- name: Upload to github pages 🚀 | |
if: ${{ github.event_name == 'push' }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: doc/_build/html # The folder the action should deploy. |