Release 1.9.0 wheels for Python 3.12 #187
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
name: Release | |
on: | |
pull_request: | |
branches: | |
- "master" | |
- "ci" | |
- "[0-9]+.[0-9x]+*" | |
paths: | |
- "edgedb/_version.py" | |
push: | |
branches: | |
- "ci" | |
jobs: | |
validate-release-request: | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.checkver.outputs.version }} | |
steps: | |
- name: Store release version for later use | |
env: | |
VERSION: 1.9.0 | |
run: | | |
mkdir -p dist/ | |
echo "${VERSION}" > dist/VERSION | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist/ | |
build-wheels-matrix: | |
needs: validate-release-request | |
runs-on: ubuntu-latest | |
outputs: | |
include: ${{ steps.set-matrix.outputs.include }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- run: pip install cibuildwheel==2.19.1 | |
- id: set-matrix | |
# Cannot test on Musl distros yet. | |
run: | | |
MATRIX_INCLUDE=$( | |
{ | |
cibuildwheel --print-build-identifiers --platform linux --arch x86_64,aarch64 | grep cp | grep many | grep 312 | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \ | |
&& cibuildwheel --print-build-identifiers --platform macos --arch x86_64,arm64 | grep cp | grep 312 | jq -nRc '{"only": inputs, "os": "macos-latest"}' \ | |
&& cibuildwheel --print-build-identifiers --platform windows --arch AMD64 | grep cp | grep 312 | jq -nRc '{"only": inputs, "os": "windows-2019"}' | |
} | jq -sc | |
) | |
echo "include=$MATRIX_INCLUDE" >> $GITHUB_OUTPUT | |
build-wheels: | |
needs: build-wheels-matrix | |
runs-on: ${{ matrix.os }} | |
name: Build ${{ matrix.only }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: ${{ fromJson(needs.build-wheels-matrix.outputs.include) }} | |
defaults: | |
run: | |
shell: bash | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 50 | |
submodules: true | |
- name: Setup WSL | |
if: ${{ matrix.os == 'windows-2019' }} | |
uses: vampire/setup-wsl@v2 | |
with: | |
wsl-shell-user: edgedb | |
additional-packages: | |
ca-certificates | |
curl | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v2 | |
- name: Install EdgeDB | |
uses: edgedb/setup-edgedb@v1 | |
- uses: pypa/[email protected] | |
with: | |
only: ${{ matrix.only }} | |
env: | |
CIBW_BUILD_VERBOSITY: 1 | |
CIBW_BEFORE_ALL_LINUX: > | |
.github/workflows/install-edgedb.sh | |
CIBW_TEST_EXTRAS: "test" | |
CIBW_TEST_COMMAND: > | |
python {project}/tests/__init__.py | |
CIBW_TEST_COMMAND_WINDOWS: > | |
python {project}\tests\__init__.py | |
CIBW_TEST_COMMAND_LINUX: > | |
PY=`which python` | |
&& CODEGEN=`which edgedb-py` | |
&& chmod -R go+rX "$(dirname $(dirname $(dirname $PY)))" | |
&& su -l edgedb -c "EDGEDB_PYTHON_TEST_CODEGEN_CMD=$CODEGEN $PY {project}/tests/__init__.py" | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: wheelhouse/*.whl | |
publish: | |
needs: [build-wheels] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 5 | |
submodules: false | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: dist/ | |
- name: Extract Release Version | |
id: relver | |
run: | | |
set -e | |
echo ::set-output name=version::$(cat dist/VERSION) | |
rm dist/VERSION | |
- run: | | |
ls -al dist/ | |
- name: Upload to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
# password: ${{ secrets.TEST_PYPI_TOKEN }} | |
# repository_url: https://test.pypi.org/legacy/ |