oops #6
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: Build and Test | |
on: | |
push: | |
release: | |
types: [create] | |
env: | |
core_dependencies: python3-requests python3-yaml python3-mako python3-sh | |
run_tests: --carthage-config=build_test/authorize.yml -k "not no_rootless and not test_pki" | |
jobs: | |
build_python_dist: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build toml | |
- name: Build | |
run: | | |
make dist | |
- name: upload_artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Python Distributions | |
path: dist/* | |
- name: Check Version consistency | |
if: github.ref_type == 'tag' | |
shell: python | |
run: | | |
import toml | |
with open('pyproject.toml', 'rt') as f: | |
result = toml.load(f) | |
assert 'v'+result['project']['version'] == '${{github.ref_name}}' | |
test_python_dist: | |
runs-on: ubuntu-22.04 | |
needs: build_python_dist | |
container: ${{matrix.image}} | |
strategy: | |
matrix: | |
image: ['debian:bookworm', 'debian:unstable'] | |
prefer_pip: [false, true] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: download_dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Python Distributions | |
path: dist/* | |
- name: install_dependencies | |
run: | | |
apt install python3-pip python3-pytest | |
test ${{matrix.prefer_pip}} = true && pip3 install --break-system-packages dist/*whl | |
if [ ${{matrix.prefer_pip}} = false ]; then | |
apt install $core_dependencies | |
PYTHONPATH=. ./bin/carthage --plugin carthage.podman install_dependencies | |
pip3 install --break-system-packages dist/*whl | |
fi | |
carthage --plugin carthage.podman generate_requirements >requirements.txt | |
pip3 install --break-system-packages -r requirements.txt | |
carthage --plugin carthage.podman install_dependencies | |
pytest-3 $run_tests tests | |