pyenv/.github/workflows/ubuntu_build.yml

41 lines
1.4 KiB
YAML
Raw Normal View History

name: ubuntu_build
on: [pull_request, push]
jobs:
ubuntu_build:
strategy:
fail-fast: false
matrix:
python-version:
2022-09-03 15:31:00 -04:00
- 3.7.13
- 3.8.13
- 3.9.13
- 3.10.6
2021-02-23 08:35:19 -05:00
runs-on: Ubuntu-20.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: |
2021-01-27 05:35:11 -05:00
sudo apt-get install -y build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
2021-02-24 04:31:10 -05:00
# https://github.com/pyenv/pyenv#installation
2021-02-24 06:07:27 -05:00
- run: pwd
2021-03-02 06:54:20 -05:00
- env:
PYENV_ROOT: /home/runner/work/pyenv/pyenv
run: |
echo $PYENV_ROOT
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
2021-03-02 06:49:09 -05:00
bin/pyenv install ${{ matrix.python-version }}
bin/pyenv global ${{ matrix.python-version }}
bin/pyenv rehash
2021-03-02 06:23:44 -05:00
- 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"))