Skip to content

Commit

Permalink
workflows: factor out testing to be able to use if:
Browse files Browse the repository at this point in the history
  • Loading branch information
suvayu committed Jul 18, 2024
1 parent 19899d4 commit 681d99b
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 56 deletions.
63 changes: 7 additions & 56 deletions .github/workflows/test-n-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,62 +72,13 @@ jobs:
os: [ubuntu-latest, windows-latest]
python: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Make dist directory
run: mkdir -p dist
- name: Download all wheels
uses: actions/download-artifact@v3
with:
path: dist
- name: Checkout ${{ matrix.pkg }}
uses: actions/checkout@v3
with:
repository: 'spine-tools/${{ matrix.pkg }}'
path: ${{ matrix.pkg }}
ref: ${{ inputs[matrix.pkg] }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install pytest and built wheels on *NIX
if: runner.os != 'Windows'
run: |
python -m pip install --upgrade pip
python -m pip install dist/*/*.whl
python -m pip install pytest
- name: Install pytest and built wheels on Windows
if: runner.os == 'Windows'
run: |
python -m pip install --upgrade pip
Get-ChildItem ./dist/*.whl -Recurse | ForEach-Object {python -m pip install $_}
python -m pip install pytest
- name: Install additional packages for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update -y
sudo apt-get install -y libegl1
- name: Remove source from checkouts for *NIX
if: runner.os != 'Windows'
run: |
rm -rf Spine-Toolbox/spinetoolbox* spine-items/spine_items \
spine-engine/spine_engine Spine-Database-API/spinedb_api
- name: Remove source from checkouts for Windows
if: runner.os == 'Windows'
run: |
Remove-Item Spine-Toolbox\spinetoolbox* -Recurse -Force -ErrorAction Ignore
Remove-Item spine-items\spine_items -Recurse -Force -ErrorAction Ignore
Remove-Item spine-engine\spine_engine -Recurse -Force -ErrorAction Ignore
Remove-Item Spine-Database-API\spinedb_api -Recurse -Force -ErrorAction Ignore
- name: Test wheels
env:
QT_QPA_PLATFORM: offscreen
run: |
python -m unittest discover -s ${{ matrix.pkg }} --verbose
- name: Execution tests
if: matrix.pkg == 'Spine-Toolbox'
run: |
python -m unittest discover -s ${{ matrix.pkg }} --pattern execution_test.py --verbose

uses: ./.github/workflows/test-wheel.yml
with:
pkg: ${{ matrix.pkg }}
ver: ${{ inputs[matrix.pkg] }}
os: ${{ matrix.os }}
python: ${{ matrix.python }}

publish:
# isolate from test, to prevent partial uploads
Expand Down
81 changes: 81 additions & 0 deletions .github/workflows/test-wheel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: Reusable workflow to publish Spine package wheels

on:
workflow_call:
inputs:
pkg:
description: Package name
type: string
required: true
ver:
description: Release tag
type: string
required: true
os:
description: Operating System/Platform
type: string
required: true
python:
description: Python version
type: string
required: true

jobs:
test-whl:
if: inputs.ver != 'skip'
runs-on: ${{ inputs.os }}
steps:
- name: Make dist directory
run: mkdir -p dist
- name: Download all wheels
uses: actions/download-artifact@v4
with:
path: dist
- name: Checkout ${{ inputs.pkg }}
uses: actions/checkout@v4
with:
repository: 'spine-tools/${{ inputs.pkg }}'
path: ${{ inputs.pkg }}
ref: ${{ inputs[inputs.pkg] }}
- name: Set up Python ${{ inputs.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python }}
- name: Install pytest and built wheels on *NIX
if: runner.os != 'Windows'
run: |
python -m pip install --upgrade pip
python -m pip install dist/*/*.whl
python -m pip install pytest
- name: Install pytest and built wheels on Windows
if: runner.os == 'Windows'
run: |
python -m pip install --upgrade pip
Get-ChildItem ./dist/*.whl -Recurse | ForEach-Object {python -m pip install $_}
python -m pip install pytest
- name: Install additional packages for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update -y
sudo apt-get install -y libegl1
- name: Remove source from checkouts for *NIX
if: runner.os != 'Windows'
run: |
rm -rf Spine-Toolbox/spinetoolbox* spine-items/spine_items \
spine-engine/spine_engine Spine-Database-API/spinedb_api
- name: Remove source from checkouts for Windows
if: runner.os == 'Windows'
run: |
Remove-Item Spine-Toolbox\spinetoolbox* -Recurse -Force -ErrorAction Ignore
Remove-Item spine-items\spine_items -Recurse -Force -ErrorAction Ignore
Remove-Item spine-engine\spine_engine -Recurse -Force -ErrorAction Ignore
Remove-Item Spine-Database-API\spinedb_api -Recurse -Force -ErrorAction Ignore
- name: Test wheels
env:
QT_QPA_PLATFORM: offscreen
run: |
python -m unittest discover -s ${{ inputs.pkg }} --verbose
- name: Execution tests
if: inputs.pkg == 'Spine-Toolbox'
run: |
python -m unittest discover -s ${{ inputs.pkg }} --pattern execution_test.py --verbose

0 comments on commit 681d99b

Please sign in to comment.