mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-03-18 20:13:33 +09:00
* Bump actions/cache v5.0.2 → v5.0.3 * Bump actions/download-artifact v7.0.0 → v8.0.1 * Bump actions/setup-node v6.2.0 → v6.3.0 * Bump actions/upload-artifact v6.0.0 → v7.0.0 * Bump docker/setup-qemu-action v3.7.0 → v4.0.0 * Bump github/codeql-action v4.31.9 → v4.33.0 * Bump oven-sh/setup-bun v2.1.2 → v2.2.0 * Bump zizmorcore/zizmor-action v0.4.1 → v0.5.2 * Bump actionlint v1.7.9 → v1.7.11 * Bump zizmor v1.22.0 → v1.23.1 * Adapt zizmor configuration to new version Authored by: bashonly
89 lines
3.4 KiB
YAML
89 lines
3.4 KiB
YAML
name: Challenge Tests
|
|
on:
|
|
push:
|
|
paths:
|
|
- .github/workflows/challenge-tests.yml
|
|
- test/test_jsc/*.py
|
|
- yt_dlp/extractor/youtube/jsc/**.js
|
|
- yt_dlp/extractor/youtube/jsc/**.py
|
|
- yt_dlp/extractor/youtube/pot/**.py
|
|
- yt_dlp/utils/_jsruntime.py
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/challenge-tests.yml
|
|
- test/test_jsc/*.py
|
|
- yt_dlp/extractor/youtube/jsc/**.js
|
|
- yt_dlp/extractor/youtube/jsc/**.py
|
|
- yt_dlp/extractor/youtube/pot/**.py
|
|
- yt_dlp/utils/_jsruntime.py
|
|
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: challenge-tests-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
tests:
|
|
name: Challenge Tests
|
|
if: ${{ !contains(github.event.head_commit.message, ':ci skip') }}
|
|
permissions:
|
|
contents: read
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', pypy-3.11]
|
|
env:
|
|
QJS_VERSION: '2025-04-26' # Earliest version with rope strings
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install Deno
|
|
uses: denoland/setup-deno@e95548e56dfa95d4e1a28d6f422fafe75c4c26fb # v2.0.3
|
|
with:
|
|
deno-version: '2.0.0' # minimum supported version
|
|
- name: Install Bun
|
|
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
|
|
with:
|
|
# minimum supported version is 1.0.31 but earliest available Windows version is 1.1.0
|
|
bun-version: ${{ (matrix.os == 'windows-latest' && '1.1.0') || '1.0.31' }}
|
|
no-cache: true
|
|
- name: Install Node
|
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
with:
|
|
node-version: '20.0' # minimum supported version
|
|
- name: Install QuickJS (Linux)
|
|
if: matrix.os == 'ubuntu-latest'
|
|
shell: bash
|
|
run: |
|
|
wget "https://bellard.org/quickjs/binary_releases/quickjs-linux-x86_64-${QJS_VERSION}.zip" -O quickjs.zip
|
|
unzip quickjs.zip qjs
|
|
sudo install qjs /usr/local/bin/qjs
|
|
- name: Install QuickJS (Windows)
|
|
if: matrix.os == 'windows-latest'
|
|
shell: pwsh
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
$PSNativeCommandUseErrorActionPreference = $true
|
|
Invoke-WebRequest "https://bellard.org/quickjs/binary_releases/quickjs-win-x86_64-${Env:QJS_VERSION}.zip" -OutFile quickjs.zip
|
|
unzip quickjs.zip
|
|
- name: Install test requirements
|
|
shell: bash
|
|
run: |
|
|
python ./devscripts/install_deps.py --print --omit-default --include-extra test > requirements.txt
|
|
python ./devscripts/install_deps.py --print -c certifi -c requests -c urllib3 -c yt-dlp-ejs >> requirements.txt
|
|
python -m pip install -U -r requirements.txt
|
|
- name: Run tests
|
|
timeout-minutes: 15
|
|
shell: bash
|
|
run: |
|
|
python -m yt_dlp -v --js-runtimes node --js-runtimes bun --js-runtimes quickjs || true
|
|
python ./devscripts/run_tests.py test/test_jsc -k download
|