chore: setup for almalinux in GH WF x 15 #135
Workflow file for this run
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: Python package tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
container-name: | |
- almalinux:9 | |
container: | |
image: ${{ matrix.container-name }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies for Python build with SSL support | |
run: | | |
dnf install -y dnf-plugins-core | |
dnf install -y gcc openssl openssl-devel bzip2-devel libffi-devel \ | |
zlib-devel make wget curl-minimal git | |
- name: Install pyenv | |
run: | | |
curl https://pyenv.run | bash | |
echo "export PYENV_ROOT=\"${HOME}/.pyenv\"" >> $GITHUB_ENV | |
echo "export PATH=\"${HOME}/.pyenv/bin:${HOME}/.pyenv/shims:$PATH\"" >> $GITHUB_ENV | |
- name: Set up pyenv environment | |
shell: bash | |
env: | |
PATH: "${HOME}/.pyenv/bin:${HOME}/.pyenv/shims:$PATH" | |
run: | | |
# Initialize pyenv | |
eval "$(pyenv init --path)" | |
eval "$(pyenv init -)" | |
- name: Install Python 3.10 with pyenv | |
shell: bash | |
env: | |
PATH: "${HOME}/.pyenv/bin:${HOME}/.pyenv/shims:$PATH" | |
run: | | |
pyenv install 3.10.12 | |
pyenv global 3.10.12 | |
python --version | |
- name: Verify Python SSL support | |
shell: bash | |
env: | |
PATH: "${HOME}/.pyenv/bin:${HOME}/.pyenv/shims:$PATH" | |
run: | | |
python -c "import ssl; print('SSL support is available:', ssl.OPENSSL_VERSION)" | |
- name: Install Torque | |
run: | | |
dnf install -y epel-release | |
dnf install -y torque torque-client torque-devel torque-drmaa torque-mom torque-server torque-scheduler | |
- name: Install dependencies | |
shell: bash | |
env: | |
PATH: "${HOME}/.pyenv/bin:${HOME}/.pyenv/shims:$PATH" | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade setuptools wheel | |
python -m pip install ".[all]" | |
- name: Unit tests | |
shell: bash | |
env: | |
PATH: "${HOME}/.pyenv/bin:${HOME}/.pyenv/shims:$PATH" | |
run: | | |
python -m unittest discover --verbose --catch --start-directory tests/unit |