mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-01 13:00:36 -05:00
a648682ed6
* CI: Bump OS versions Github released ubuntu-22.04 and macos-12 from beta and deprecated ubuntu-18.04 and macos-10.15, due to dropping by 2013. * CI: clean up installed packages
40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
name: ubuntu_build
|
|
on: [pull_request, push]
|
|
jobs:
|
|
ubuntu_build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version:
|
|
- 3.7.13
|
|
- 3.8.13
|
|
- 3.9.13
|
|
- 3.10.6
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
# 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 Ubuntu
|
|
- run: |
|
|
sudo apt-get install -yq make build-essential libssl-dev zlib1g-dev \
|
|
libbz2-dev libreadline-dev libsqlite3-dev curl \
|
|
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
|
|
# https://github.com/pyenv/pyenv#installation
|
|
- run: pwd
|
|
- env:
|
|
PYENV_ROOT: /home/runner/work/pyenv/pyenv
|
|
run: |
|
|
echo $PYENV_ROOT
|
|
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
|
|
bin/pyenv install -v ${{ 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"))
|