Skip to content

Commit

Permalink
use container for python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
markreidvfx committed Jul 1, 2023
1 parent c86a7b3 commit 971a813
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
python-version: ["2.7", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

needs:
- build-pure-wheel
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["2.7", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

needs:
- build-cython-wheels
Expand All @@ -154,6 +154,31 @@ jobs:
python -m pip install --find-links=./dist --no-index --only-binary=:all: pyavb
python -m unittest discover tests -v
test-cython-wheels-27:
runs-on: ubuntu-latest

container: coatldev/six:latest
needs:
- build-cython-wheels

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Download cython wheels
uses: actions/download-artifact@v3
with:
name: cython-wheels
path: dist/

- name: Run Unit Tests
shell: bash
run: |
python2 --version
python2 -m pip install --find-links=./dist --no-index --only-binary=:all: pyavb
python2 -m unittest discover tests -v
latest-release:
needs:
- test-cython-wheels
Expand Down

0 comments on commit 971a813

Please sign in to comment.