]> jfr.im git - yt-dlp.git/blame - .github/workflows/build.yml
[ie/orf:on] Support segmented episodes (#10053)
[yt-dlp.git] / .github / workflows / build.yml
CommitLineData
29cb20bd
SS
1name: Build Artifacts
2on:
3 workflow_call:
4 inputs:
5 version:
6 required: true
7 type: string
8 channel:
9 required: false
10 default: stable
11 type: string
12 unix:
13 default: true
14 type: boolean
ac817bc8
SS
15 linux_static:
16 default: true
17 type: boolean
29cb20bd
SS
18 linux_arm:
19 default: true
20 type: boolean
21 macos:
22 default: true
23 type: boolean
24 macos_legacy:
25 default: true
26 type: boolean
27 windows:
28 default: true
29 type: boolean
30 windows32:
31 default: true
32 type: boolean
20314dd4 33 origin:
34 required: false
35 default: ''
36 type: string
12647e03
SS
37 secrets:
38 GPG_SIGNING_KEY:
39 required: false
29cb20bd
SS
40
41 workflow_dispatch:
42 inputs:
43 version:
20314dd4 44 description: |
45 VERSION: yyyy.mm.dd[.rev] or rev
29cb20bd
SS
46 required: true
47 type: string
48 channel:
20314dd4 49 description: |
50 SOURCE of this build's updates: stable/nightly/master/<repo>
29cb20bd
SS
51 required: true
52 default: stable
53 type: string
54 unix:
ac817bc8
SS
55 description: yt-dlp, yt-dlp.tar.gz
56 default: true
57 type: boolean
58 linux_static:
59 description: yt-dlp_linux
29cb20bd
SS
60 default: true
61 type: boolean
62 linux_arm:
63 description: yt-dlp_linux_aarch64, yt-dlp_linux_armv7l
64 default: true
65 type: boolean
66 macos:
67 description: yt-dlp_macos, yt-dlp_macos.zip
68 default: true
69 type: boolean
70 macos_legacy:
71 description: yt-dlp_macos_legacy
72 default: true
73 type: boolean
74 windows:
75 description: yt-dlp.exe, yt-dlp_min.exe, yt-dlp_win.zip
76 default: true
77 type: boolean
78 windows32:
79 description: yt-dlp_x86.exe
80 default: true
81 type: boolean
20314dd4 82 origin:
632b8ee5 83 description: Origin
20314dd4 84 required: false
632b8ee5 85 default: 'current repo'
20314dd4 86 type: choice
87 options:
632b8ee5 88 - 'current repo'
29cb20bd 89
c789fb77
A
90permissions:
91 contents: read
915f2a92
U
92
93jobs:
20314dd4 94 process:
95 runs-on: ubuntu-latest
96 outputs:
97 origin: ${{ steps.process_origin.outputs.origin }}
98 steps:
99 - name: Process origin
100 id: process_origin
101 run: |
632b8ee5 102 echo "origin=${{ inputs.origin == 'current repo' && github.repository || inputs.origin }}" | tee "$GITHUB_OUTPUT"
20314dd4 103
29cb20bd 104 unix:
20314dd4 105 needs: process
29cb20bd 106 if: inputs.unix
a6858cda 107 runs-on: ubuntu-latest
b5899f4f 108 steps:
5438593a 109 - uses: actions/checkout@v4
17b96974 110 with:
111 fetch-depth: 0 # Needed for changelog
b14e818b 112 - uses: actions/setup-python@v5
29cb20bd
SS
113 with:
114 python-version: "3.10"
29cb20bd
SS
115 - name: Install Requirements
116 run: |
1d03633c 117 sudo apt -y install zip pandoc man sed
29cb20bd
SS
118 - name: Prepare
119 run: |
20314dd4 120 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
17b96974 121 python devscripts/update_changelog.py -vv
b5899f4f 122 python devscripts/make_lazy_extractors.py
29cb20bd
SS
123 - name: Build Unix platform-independent binary
124 run: |
b5899f4f 125 make all tar
b73193c9 126 - name: Verify --update-to
127 if: vars.UPDATE_TO_VERIFICATION
128 run: |
ac817bc8
SS
129 chmod +x ./yt-dlp
130 cp ./yt-dlp ./yt-dlp_downgraded
131 version="$(./yt-dlp --version)"
132 ./yt-dlp_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
133 downgraded_version="$(./yt-dlp_downgraded --version)"
134 [[ "$version" != "$downgraded_version" ]]
29cb20bd 135 - name: Upload artifacts
3876429d 136 uses: actions/upload-artifact@v4
29cb20bd 137 with:
eabbccc4 138 name: build-bin-${{ github.job }}
29cb20bd
SS
139 path: |
140 yt-dlp
141 yt-dlp.tar.gz
ac817bc8
SS
142 compression-level: 0
143
144 linux_static:
145 needs: process
146 if: inputs.linux_static
147 runs-on: ubuntu-latest
148 steps:
149 - uses: actions/checkout@v4
150 - name: Build static executable
151 env:
152 channel: ${{ inputs.channel }}
153 origin: ${{ needs.process.outputs.origin }}
154 version: ${{ inputs.version }}
155 run: |
156 mkdir ~/build
157 cd bundle/docker
158 docker compose up --build static
159 sudo chown "${USER}:docker" ~/build/yt-dlp_linux
160 - name: Verify --update-to
161 if: vars.UPDATE_TO_VERIFICATION
162 run: |
163 chmod +x ~/build/yt-dlp_linux
164 cp ~/build/yt-dlp_linux ~/build/yt-dlp_linux_downgraded
165 version="$(~/build/yt-dlp_linux --version)"
166 ~/build/yt-dlp_linux_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
167 downgraded_version="$(~/build/yt-dlp_linux_downgraded --version)"
168 [[ "$version" != "$downgraded_version" ]]
169 - name: Upload artifacts
170 uses: actions/upload-artifact@v4
171 with:
172 name: build-bin-${{ github.job }}
173 path: |
174 ~/build/yt-dlp_linux
3876429d 175 compression-level: 0
29cb20bd
SS
176
177 linux_arm:
20314dd4 178 needs: process
29cb20bd 179 if: inputs.linux_arm
17fc3dc4 180 permissions:
29cb20bd
SS
181 contents: read
182 packages: write # for creating cache
17fc3dc4 183 runs-on: ubuntu-latest
17fc3dc4
M
184 strategy:
185 matrix:
186 architecture:
29cb20bd
SS
187 - armv7
188 - aarch64
17fc3dc4
M
189
190 steps:
5438593a 191 - uses: actions/checkout@v4
29cb20bd
SS
192 with:
193 path: ./repo
194 - name: Virtualized Install, Prepare & Build
195 uses: yt-dlp/run-on-arch-action@v2
196 with:
197 # Ref: https://github.com/uraimo/run-on-arch-action/issues/55
198 env: |
199 GITHUB_WORKFLOW: build
200 githubToken: ${{ github.token }} # To cache image
201 arch: ${{ matrix.architecture }}
202 distro: ubuntu18.04 # Standalone executable should be built on minimum supported OS
203 dockerRunArgs: --volume "${PWD}/repo:/repo"
204 install: | # Installing Python 3.10 from the Deadsnakes repo raises errors
205 apt update
92039763 206 apt -y install zlib1g-dev libffi-dev python3.8 python3.8-dev python3.8-distutils python3-pip
29cb20bd 207 python3.8 -m pip install -U pip setuptools wheel
b8a433aa 208 # Cannot access any files from the repo directory at this stage
92039763 209 python3.8 -m pip install -U Pyinstaller mutagen pycryptodomex websockets brotli certifi secretstorage cffi
29cb20bd
SS
210
211 run: |
212 cd repo
b8a433aa 213 python3.8 devscripts/install_deps.py -o --include build
214 python3.8 devscripts/install_deps.py --include pyinstaller --include secretstorage # Cached version may be out of date
20314dd4 215 python3.8 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
29cb20bd 216 python3.8 devscripts/make_lazy_extractors.py
a1b77842 217 python3.8 -m bundle.pyinstaller
29cb20bd 218
b73193c9 219 if ${{ vars.UPDATE_TO_VERIFICATION && 'true' || 'false' }}; then
220 arch="${{ (matrix.architecture == 'armv7' && 'armv7l') || matrix.architecture }}"
221 chmod +x ./dist/yt-dlp_linux_${arch}
222 cp ./dist/yt-dlp_linux_${arch} ./dist/yt-dlp_linux_${arch}_downgraded
223 version="$(./dist/yt-dlp_linux_${arch} --version)"
224 ./dist/yt-dlp_linux_${arch}_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
225 downgraded_version="$(./dist/yt-dlp_linux_${arch}_downgraded --version)"
226 [[ "$version" != "$downgraded_version" ]]
227 fi
228
29cb20bd 229 - name: Upload artifacts
3876429d 230 uses: actions/upload-artifact@v4
29cb20bd 231 with:
eabbccc4 232 name: build-bin-linux_${{ matrix.architecture }}
29cb20bd
SS
233 path: | # run-on-arch-action designates armv7l as armv7
234 repo/dist/yt-dlp_linux_${{ (matrix.architecture == 'armv7' && 'armv7l') || matrix.architecture }}
3876429d 235 compression-level: 0
29cb20bd
SS
236
237 macos:
20314dd4 238 needs: process
29cb20bd 239 if: inputs.macos
0e5927ee 240 runs-on: macos-11
0e5927ee
R
241
242 steps:
5438593a 243 - uses: actions/checkout@v4
44a79958 244 # NB: Building universal2 does not work with python from actions/setup-python
29cb20bd
SS
245 - name: Install Requirements
246 run: |
0e5927ee 247 brew install coreutils
b8a433aa 248 python3 devscripts/install_deps.py --user -o --include build
58dd0f8d 249 python3 devscripts/install_deps.py --print --include pyinstaller > requirements.txt
44a79958 250 # We need to ignore wheels otherwise we break universal2 builds
b8a433aa 251 python3 -m pip install -U --user --no-binary :all: -r requirements.txt
52f5be1f 252 # We need to fuse our own universal2 wheels for curl_cffi
253 python3 -m pip install -U --user delocate
254 mkdir curl_cffi_whls curl_cffi_universal2
02483bea 255 python3 devscripts/install_deps.py --print -o --include curl-cffi > requirements.txt
52f5be1f 256 for platform in "macosx_11_0_arm64" "macosx_11_0_x86_64"; do
257 python3 -m pip download \
258 --only-binary=:all: \
259 --platform "${platform}" \
260 --pre -d curl_cffi_whls \
261 -r requirements.txt
262 done
263 python3 -m delocate.cmd.delocate_fuse curl_cffi_whls/curl_cffi*.whl -w curl_cffi_universal2
264 python3 -m delocate.cmd.delocate_fuse curl_cffi_whls/cffi*.whl -w curl_cffi_universal2
265 cd curl_cffi_universal2
266 for wheel in *cffi*.whl; do mv -n -- "${wheel}" "${wheel/x86_64/universal2}"; done
267 python3 -m pip install -U --user *cffi*.whl
b5899f4f 268
29cb20bd
SS
269 - name: Prepare
270 run: |
20314dd4 271 python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
44a79958 272 python3 devscripts/make_lazy_extractors.py
29cb20bd
SS
273 - name: Build
274 run: |
a1b77842 275 python3 -m bundle.pyinstaller --target-architecture universal2 --onedir
b5899f4f 276 (cd ./dist/yt-dlp_macos && zip -r ../yt-dlp_macos.zip .)
a1b77842 277 python3 -m bundle.pyinstaller --target-architecture universal2
b5899f4f 278
b73193c9 279 - name: Verify --update-to
280 if: vars.UPDATE_TO_VERIFICATION
281 run: |
282 chmod +x ./dist/yt-dlp_macos
283 cp ./dist/yt-dlp_macos ./dist/yt-dlp_macos_downgraded
284 version="$(./dist/yt-dlp_macos --version)"
285 ./dist/yt-dlp_macos_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
286 downgraded_version="$(./dist/yt-dlp_macos_downgraded --version)"
287 [[ "$version" != "$downgraded_version" ]]
288
29cb20bd 289 - name: Upload artifacts
3876429d 290 uses: actions/upload-artifact@v4
29cb20bd 291 with:
eabbccc4 292 name: build-bin-${{ github.job }}
29cb20bd
SS
293 path: |
294 dist/yt-dlp_macos
295 dist/yt-dlp_macos.zip
3876429d 296 compression-level: 0
b5899f4f 297
29cb20bd 298 macos_legacy:
20314dd4 299 needs: process
29cb20bd 300 if: inputs.macos_legacy
1a366403 301 runs-on: macos-12
28cdb605 302
6d916fe7 303 steps:
5438593a 304 - uses: actions/checkout@v4
29cb20bd
SS
305 - name: Install Python
306 # We need the official Python, because the GA ones only support newer macOS versions
307 env:
308 PYTHON_VERSION: 3.10.5
309 MACOSX_DEPLOYMENT_TARGET: 10.9 # Used up by the Python build tools
310 run: |
6d916fe7
SL
311 # Hack to get the latest patch version. Uncomment if needed
312 #brew install python@3.10
313 #export PYTHON_VERSION=$( $(brew --prefix)/opt/python@3.10/bin/python3 --version | cut -d ' ' -f 2 )
314 curl https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macos11.pkg -o "python.pkg"
315 sudo installer -pkg python.pkg -target /
316 python3 --version
29cb20bd
SS
317 - name: Install Requirements
318 run: |
6d916fe7 319 brew install coreutils
b8a433aa 320 python3 devscripts/install_deps.py --user -o --include build
b19ae095 321 python3 devscripts/install_deps.py --user --include pyinstaller
6d916fe7 322
29cb20bd
SS
323 - name: Prepare
324 run: |
20314dd4 325 python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
6d916fe7 326 python3 devscripts/make_lazy_extractors.py
29cb20bd
SS
327 - name: Build
328 run: |
a1b77842 329 python3 -m bundle.pyinstaller
c4b6c5c7 330 mv dist/yt-dlp_macos dist/yt-dlp_macos_legacy
6d916fe7 331
b73193c9 332 - name: Verify --update-to
333 if: vars.UPDATE_TO_VERIFICATION
334 run: |
335 chmod +x ./dist/yt-dlp_macos_legacy
336 cp ./dist/yt-dlp_macos_legacy ./dist/yt-dlp_macos_legacy_downgraded
337 version="$(./dist/yt-dlp_macos_legacy --version)"
338 ./dist/yt-dlp_macos_legacy_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
339 downgraded_version="$(./dist/yt-dlp_macos_legacy_downgraded --version)"
340 [[ "$version" != "$downgraded_version" ]]
341
29cb20bd 342 - name: Upload artifacts
3876429d 343 uses: actions/upload-artifact@v4
29cb20bd 344 with:
eabbccc4 345 name: build-bin-${{ github.job }}
29cb20bd
SS
346 path: |
347 dist/yt-dlp_macos_legacy
3876429d 348 compression-level: 0
6d916fe7 349
29cb20bd 350 windows:
20314dd4 351 needs: process
29cb20bd 352 if: inputs.windows
915f2a92 353 runs-on: windows-latest
47930b73 354
915f2a92 355 steps:
5438593a 356 - uses: actions/checkout@v4
b14e818b 357 - uses: actions/setup-python@v5
29cb20bd
SS
358 with: # 3.8 is used for Win7 support
359 python-version: "3.8"
360 - name: Install Requirements
361 run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds
b8a433aa 362 python devscripts/install_deps.py -o --include build
3f799953 363 python devscripts/install_deps.py --include curl-cffi
b8a433aa 364 python -m pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-5.8.0-py3-none-any.whl"
b5899f4f 365
29cb20bd
SS
366 - name: Prepare
367 run: |
20314dd4 368 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
b5899f4f 369 python devscripts/make_lazy_extractors.py
29cb20bd
SS
370 - name: Build
371 run: |
a1b77842 372 python -m bundle.pyinstaller
373 python -m bundle.pyinstaller --onedir
3f799953 374 Move-Item ./dist/yt-dlp.exe ./dist/yt-dlp_real.exe
b5899f4f 375 Compress-Archive -Path ./dist/yt-dlp/* -DestinationPath ./dist/yt-dlp_win.zip
c4b6c5c7 376
3f799953
SS
377 - name: Install Requirements (py2exe)
378 run: |
379 python devscripts/install_deps.py --include py2exe
380 - name: Build (py2exe)
381 run: |
382 python -m bundle.py2exe
383 Move-Item ./dist/yt-dlp.exe ./dist/yt-dlp_min.exe
384 Move-Item ./dist/yt-dlp_real.exe ./dist/yt-dlp.exe
385
b73193c9 386 - name: Verify --update-to
387 if: vars.UPDATE_TO_VERIFICATION
388 run: |
389 foreach ($name in @("yt-dlp","yt-dlp_min")) {
390 Copy-Item "./dist/${name}.exe" "./dist/${name}_downgraded.exe"
391 $version = & "./dist/${name}.exe" --version
392 & "./dist/${name}_downgraded.exe" -v --update-to yt-dlp/yt-dlp@2023.03.04
393 $downgraded_version = & "./dist/${name}_downgraded.exe" --version
394 if ($version -eq $downgraded_version) {
395 exit 1
396 }
397 }
398
29cb20bd 399 - name: Upload artifacts
3876429d 400 uses: actions/upload-artifact@v4
29cb20bd 401 with:
eabbccc4 402 name: build-bin-${{ github.job }}
29cb20bd
SS
403 path: |
404 dist/yt-dlp.exe
405 dist/yt-dlp_min.exe
406 dist/yt-dlp_win.zip
3876429d 407 compression-level: 0
386cdfdb 408
29cb20bd 409 windows32:
20314dd4 410 needs: process
29cb20bd 411 if: inputs.windows32
915f2a92 412 runs-on: windows-latest
47930b73 413
915f2a92 414 steps:
5438593a 415 - uses: actions/checkout@v4
b14e818b 416 - uses: actions/setup-python@v5
f4b95aca 417 with:
418 python-version: "3.8"
29cb20bd
SS
419 architecture: "x86"
420 - name: Install Requirements
421 run: |
b8a433aa 422 python devscripts/install_deps.py -o --include build
423 python devscripts/install_deps.py
424 python -m pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-5.8.0-py3-none-any.whl"
b5899f4f 425
29cb20bd
SS
426 - name: Prepare
427 run: |
20314dd4 428 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
b5899f4f 429 python devscripts/make_lazy_extractors.py
29cb20bd
SS
430 - name: Build
431 run: |
a1b77842 432 python -m bundle.pyinstaller
b5899f4f 433
b73193c9 434 - name: Verify --update-to
435 if: vars.UPDATE_TO_VERIFICATION
436 run: |
437 foreach ($name in @("yt-dlp_x86")) {
438 Copy-Item "./dist/${name}.exe" "./dist/${name}_downgraded.exe"
439 $version = & "./dist/${name}.exe" --version
440 & "./dist/${name}_downgraded.exe" -v --update-to yt-dlp/yt-dlp@2023.03.04
441 $downgraded_version = & "./dist/${name}_downgraded.exe" --version
442 if ($version -eq $downgraded_version) {
443 exit 1
444 }
445 }
446
29cb20bd 447 - name: Upload artifacts
3876429d 448 uses: actions/upload-artifact@v4
29cb20bd 449 with:
eabbccc4 450 name: build-bin-${{ github.job }}
29cb20bd
SS
451 path: |
452 dist/yt-dlp_x86.exe
3876429d 453 compression-level: 0
29cb20bd
SS
454
455 meta_files:
ac817bc8 456 if: always() && !cancelled()
29cb20bd 457 needs:
20314dd4 458 - process
29cb20bd 459 - unix
ac817bc8 460 - linux_static
29cb20bd
SS
461 - linux_arm
462 - macos
463 - macos_legacy
464 - windows
465 - windows32
14b17a55 466 runs-on: ubuntu-latest
14b17a55 467 steps:
3876429d 468 - uses: actions/download-artifact@v4
469 with:
470 path: artifact
eabbccc4 471 pattern: build-bin-*
3876429d 472 merge-multiple: true
b1f94422 473
29cb20bd
SS
474 - name: Make SHA2-SUMS files
475 run: |
476 cd ./artifact/
e8032503 477 # make sure SHA sums are also printed to stdout
478 sha256sum * | tee ../SHA2-256SUMS
479 sha512sum * | tee ../SHA2-512SUMS
c4b6c5c7 480
29cb20bd
SS
481 - name: Make Update spec
482 run: |
483 cat >> _update_spec << EOF
484 # This file is used for regulating self-update
f4b95aca 485 lock 2022.08.18.36 .+ Python 3\.6
486 lock 2023.11.16 (?!win_x86_exe).+ Python 3\.7
487 lock 2023.11.16 win_x86_exe .+ Windows-(?:Vista|2008Server)
488 lockV2 yt-dlp/yt-dlp 2022.08.18.36 .+ Python 3\.6
489 lockV2 yt-dlp/yt-dlp 2023.11.16 (?!win_x86_exe).+ Python 3\.7
490 lockV2 yt-dlp/yt-dlp 2023.11.16 win_x86_exe .+ Windows-(?:Vista|2008Server)
491 lockV2 yt-dlp/yt-dlp-nightly-builds 2023.11.15.232826 (?!win_x86_exe).+ Python 3\.7
492 lockV2 yt-dlp/yt-dlp-nightly-builds 2023.11.15.232826 win_x86_exe .+ Windows-(?:Vista|2008Server)
493 lockV2 yt-dlp/yt-dlp-master-builds 2023.11.15.232812 (?!win_x86_exe).+ Python 3\.7
494 lockV2 yt-dlp/yt-dlp-master-builds 2023.11.15.232812 win_x86_exe .+ Windows-(?:Vista|2008Server)
29cb20bd
SS
495 EOF
496
12647e03
SS
497 - name: Sign checksum files
498 env:
499 GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
500 if: env.GPG_SIGNING_KEY != ''
501 run: |
502 gpg --batch --import <<< "${{ secrets.GPG_SIGNING_KEY }}"
503 for signfile in ./SHA*SUMS; do
504 gpg --batch --detach-sign "$signfile"
505 done
506
29cb20bd 507 - name: Upload artifacts
3876429d 508 uses: actions/upload-artifact@v4
29cb20bd 509 with:
3876429d 510 name: build-${{ github.job }}
29cb20bd 511 path: |
29cb20bd 512 _update_spec
3876429d 513 SHA*SUMS*
514 compression-level: 0
eabbccc4 515 overwrite: true