Skip to content

Automatically import binary extensions whose suffixes include the python version #81

Automatically import binary extensions whose suffixes include the python version

Automatically import binary extensions whose suffixes include the python version #81

Workflow file for this run

name: Test the shim
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- base_image: fedora:latest
install_deps_cmd: dnf -y install git-core python3-pip python3-rpm
- base_image: centos:stream9
install_deps_cmd: dnf -y install git-core python3-pip python3-rpm
- base_image: registry.access.redhat.com/ubi9:latest
install_deps_cmd: dnf -y install git-core python{3,3.11}-pip python3-rpm && for interpreter in python{3,3.11}; do $interpreter -m pip install -U requests || break; done
- base_image: ubi8:latest
install_deps_cmd: dnf -y install git-core python3-pip python3-rpm
- base_image: opensuse/leap:latest
install_deps_cmd: zypper -n install git-core python3-pip python3-rpm
- base_image: ubuntu:latest
install_deps_cmd: apt-get -y update && apt-get -y install git python3-pip python3-rpm
steps:
- uses: actions/checkout@v2
- name: Run the tests
env:
BASE_IMAGE: ${{ matrix.base_image }}
INSTALL_DEPS_CMD: ${{ matrix.install_deps_cmd }}
run: make test