2022-05-03 20:08:46 -04:00
|
|
|
name: macos_build
|
2021-12-03 16:17:19 -05:00
|
|
|
on: [pull_request, push]
|
2022-11-09 20:46:55 -05:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
|
2021-12-03 16:17:19 -05:00
|
|
|
jobs:
|
2022-05-03 20:08:46 -04:00
|
|
|
macos_build:
|
2021-12-03 16:17:19 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
python-version:
|
2022-10-29 20:38:40 -04:00
|
|
|
- "3.8"
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
2022-11-03 10:32:52 -04:00
|
|
|
- "3.11"
|
2023-10-15 08:03:49 -04:00
|
|
|
- "3.12"
|
2024-07-01 15:38:06 -04:00
|
|
|
runs-on: macos-14
|
2021-12-03 16:17:19 -05:00
|
|
|
steps:
|
2023-12-12 00:04:41 -05:00
|
|
|
- uses: actions/checkout@v4
|
2021-12-03 16:17:19 -05:00
|
|
|
# Normally, we would use the superbly maintained...
|
|
|
|
# - uses: actions/setup-python@v2
|
|
|
|
# with:
|
|
|
|
# python-version: ${{ matrix.python-version }}
|
|
|
|
# ... but in the repo, we want to test pyenv builds on macOS
|
|
|
|
- run: |
|
2021-12-05 19:23:21 -05:00
|
|
|
brew install openssl readline sqlite3 xz zlib
|
2021-12-03 16:17:19 -05:00
|
|
|
# https://github.com/pyenv/pyenv#installation
|
|
|
|
- run: pwd
|
|
|
|
- env:
|
|
|
|
PYENV_ROOT: /Users/runner/work/pyenv/pyenv
|
|
|
|
run: |
|
|
|
|
echo $PYENV_ROOT
|
|
|
|
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
|
2024-05-24 13:34:25 -04:00
|
|
|
bin/pyenv --debug install ${{ matrix.python-version }}
|
2021-12-03 16:17:19 -05:00
|
|
|
bin/pyenv global ${{ matrix.python-version }}
|
|
|
|
bin/pyenv rehash
|
|
|
|
- run: python --version
|
|
|
|
- run: python -m pip --version
|
|
|
|
- shell: python # Prove that actual Python == expected Python
|
|
|
|
env:
|
|
|
|
EXPECTED_PYTHON: ${{ matrix.python-version }}
|
|
|
|
run: import os, sys ; assert sys.version.startswith(os.getenv("EXPECTED_PYTHON"))
|