commit: cdf40b6aa651d949ce01e9bec1a11f792e8af899
parent 3f6d2bd76f3393eef90896dfabc2d8dde37c2009
Author: dirkf <fieldhouse@gmx.net>
Date: Mon, 3 Apr 2023 21:07:10 +0100
[test] Update tests for Ubuntu 20.04
* 18.04 test runner was withdrawn
* for now, disable Py 3.3/3.4 tests
Diffstat:
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -7,9 +7,10 @@ jobs:
strategy:
fail-fast: true
matrix:
- os: [ubuntu-18.04]
+ os: [ubuntu-20.04]
# TODO: python 2.6
- python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7]
+ # TODO: restore support for 3.3, 3.4
+ python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7]
python-impl: [cpython]
ytdl-test-set: [core, download]
run-tests-ext: [sh]
@@ -26,26 +27,27 @@ jobs:
ytdl-test-set: download
run-tests-ext: bat
# jython
- - os: ubuntu-18.04
+ - os: ubuntu-20.04
python-impl: jython
ytdl-test-set: core
run-tests-ext: sh
- - os: ubuntu-18.04
+ - os: ubuntu-20.04
python-impl: jython
ytdl-test-set: download
run-tests-ext: sh
steps:
- - uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
- if: ${{ matrix.python-impl == 'cpython' }}
+ - uses: actions/checkout@v3
+ - name: Set up supported Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v4
+ if: ${{ matrix.python-impl == 'cpython' && ! contains(fromJSON('["3.3", "3.4"]'), matrix.python-version) }}
with:
python-version: ${{ matrix.python-version }}
- name: Set up Java 8
if: ${{ matrix.python-impl == 'jython' }}
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v2
with:
java-version: 8
+ distribution: 'zulu'
- name: Install Jython
if: ${{ matrix.python-impl == 'jython' }}
run: |
@@ -70,9 +72,9 @@ jobs:
name: Linter
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install flake8