mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
1bcaab05b7
Github has finally released those as free and retired macos-11
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
name: macos_build
|
|
on: [pull_request, push]
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
macos_build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version:
|
|
- "3.8"
|
|
- "3.9"
|
|
- "3.10"
|
|
- "3.11"
|
|
- "3.12"
|
|
runs-on: macos-14
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
# 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: |
|
|
brew install openssl readline sqlite3 xz zlib
|
|
# 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
|
|
bin/pyenv --debug install ${{ matrix.python-version }}
|
|
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"))
|