]> jfr.im git - yt-dlp.git/blame - .github/workflows/build.yml
[ie/tvp] Support livestreams (#8860)
[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
15 linux_arm:
16 default: true
17 type: boolean
18 macos:
19 default: true
20 type: boolean
21 macos_legacy:
22 default: true
23 type: boolean
24 windows:
25 default: true
26 type: boolean
27 windows32:
28 default: true
29 type: boolean
30 meta_files:
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:
55 description: yt-dlp, yt-dlp.tar.gz, yt-dlp_linux, yt-dlp_linux.zip
56 default: true
57 type: boolean
58 linux_arm:
59 description: yt-dlp_linux_aarch64, yt-dlp_linux_armv7l
60 default: true
61 type: boolean
62 macos:
63 description: yt-dlp_macos, yt-dlp_macos.zip
64 default: true
65 type: boolean
66 macos_legacy:
67 description: yt-dlp_macos_legacy
68 default: true
69 type: boolean
70 windows:
71 description: yt-dlp.exe, yt-dlp_min.exe, yt-dlp_win.zip
72 default: true
73 type: boolean
74 windows32:
75 description: yt-dlp_x86.exe
76 default: true
77 type: boolean
78 meta_files:
79 description: SHA2-256SUMS, SHA2-512SUMS, _update_spec
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
29cb20bd
SS
110 - uses: actions/setup-python@v4
111 with:
112 python-version: "3.10"
113 - uses: conda-incubator/setup-miniconda@v2
114 with:
a6858cda 115 miniforge-variant: Mambaforge
116 use-mamba: true
117 channels: conda-forge
118 auto-update-conda: true
29cb20bd 119 activate-environment: ""
a6858cda 120 auto-activate-base: false
29cb20bd
SS
121 - name: Install Requirements
122 run: |
1d03633c 123 sudo apt -y install zip pandoc man sed
a6858cda 124 reqs=$(mktemp)
9970d74c 125 cat > "$reqs" << EOF
776d1c3f 126 python=3.10.*
127 pyinstaller
128 cffi
129 brotli-python
9970d74c 130 secretstorage
776d1c3f 131 EOF
9970d74c 132 sed -E '/^(brotli|secretstorage).*/d' requirements.txt >> "$reqs"
133 mamba create -n build --file "$reqs"
b5899f4f 134
29cb20bd
SS
135 - name: Prepare
136 run: |
20314dd4 137 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
b5899f4f 138 python devscripts/make_lazy_extractors.py
29cb20bd
SS
139 - name: Build Unix platform-independent binary
140 run: |
b5899f4f 141 make all tar
29cb20bd
SS
142 - name: Build Unix standalone binary
143 shell: bash -l {0}
144 run: |
a6858cda 145 unset LD_LIBRARY_PATH # Harmful; set by setup-python
146 conda activate build
e4afcfde 147 python pyinst.py --onedir
148 (cd ./dist/yt-dlp_linux && zip -r ../yt-dlp_linux.zip .)
149 python pyinst.py
29cb20bd
SS
150 mv ./dist/yt-dlp_linux ./yt-dlp_linux
151 mv ./dist/yt-dlp_linux.zip ./yt-dlp_linux.zip
152
b73193c9 153 - name: Verify --update-to
154 if: vars.UPDATE_TO_VERIFICATION
155 run: |
156 binaries=("yt-dlp" "yt-dlp_linux")
157 for binary in "${binaries[@]}"; do
158 chmod +x ./${binary}
159 cp ./${binary} ./${binary}_downgraded
160 version="$(./${binary} --version)"
161 ./${binary}_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
162 downgraded_version="$(./${binary}_downgraded --version)"
163 [[ "$version" != "$downgraded_version" ]]
164 done
165
29cb20bd
SS
166 - name: Upload artifacts
167 uses: actions/upload-artifact@v3
168 with:
169 path: |
170 yt-dlp
171 yt-dlp.tar.gz
172 yt-dlp_linux
173 yt-dlp_linux.zip
174
175 linux_arm:
20314dd4 176 needs: process
29cb20bd 177 if: inputs.linux_arm
17fc3dc4 178 permissions:
29cb20bd
SS
179 contents: read
180 packages: write # for creating cache
17fc3dc4 181 runs-on: ubuntu-latest
17fc3dc4
M
182 strategy:
183 matrix:
184 architecture:
29cb20bd
SS
185 - armv7
186 - aarch64
17fc3dc4
M
187
188 steps:
5438593a 189 - uses: actions/checkout@v4
29cb20bd
SS
190 with:
191 path: ./repo
192 - name: Virtualized Install, Prepare & Build
193 uses: yt-dlp/run-on-arch-action@v2
194 with:
195 # Ref: https://github.com/uraimo/run-on-arch-action/issues/55
196 env: |
197 GITHUB_WORKFLOW: build
198 githubToken: ${{ github.token }} # To cache image
199 arch: ${{ matrix.architecture }}
200 distro: ubuntu18.04 # Standalone executable should be built on minimum supported OS
201 dockerRunArgs: --volume "${PWD}/repo:/repo"
202 install: | # Installing Python 3.10 from the Deadsnakes repo raises errors
203 apt update
204 apt -y install zlib1g-dev python3.8 python3.8-dev python3.8-distutils python3-pip
205 python3.8 -m pip install -U pip setuptools wheel
206 # Cannot access requirements.txt from the repo directory at this stage
24f82787 207 python3.8 -m pip install -U Pyinstaller mutagen pycryptodomex websockets brotli certifi secretstorage
29cb20bd
SS
208
209 run: |
210 cd repo
24f82787 211 python3.8 -m pip install -U Pyinstaller secretstorage -r requirements.txt # Cached version may be out of date
20314dd4 212 python3.8 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
29cb20bd
SS
213 python3.8 devscripts/make_lazy_extractors.py
214 python3.8 pyinst.py
215
b73193c9 216 if ${{ vars.UPDATE_TO_VERIFICATION && 'true' || 'false' }}; then
217 arch="${{ (matrix.architecture == 'armv7' && 'armv7l') || matrix.architecture }}"
218 chmod +x ./dist/yt-dlp_linux_${arch}
219 cp ./dist/yt-dlp_linux_${arch} ./dist/yt-dlp_linux_${arch}_downgraded
220 version="$(./dist/yt-dlp_linux_${arch} --version)"
221 ./dist/yt-dlp_linux_${arch}_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
222 downgraded_version="$(./dist/yt-dlp_linux_${arch}_downgraded --version)"
223 [[ "$version" != "$downgraded_version" ]]
224 fi
225
29cb20bd
SS
226 - name: Upload artifacts
227 uses: actions/upload-artifact@v3
228 with:
229 path: | # run-on-arch-action designates armv7l as armv7
230 repo/dist/yt-dlp_linux_${{ (matrix.architecture == 'armv7' && 'armv7l') || matrix.architecture }}
231
232 macos:
20314dd4 233 needs: process
29cb20bd 234 if: inputs.macos
0e5927ee 235 runs-on: macos-11
0e5927ee
R
236
237 steps:
5438593a 238 - uses: actions/checkout@v4
44a79958 239 # NB: Building universal2 does not work with python from actions/setup-python
29cb20bd
SS
240 - name: Install Requirements
241 run: |
0e5927ee 242 brew install coreutils
44a79958
SS
243 python3 -m pip install -U --user pip setuptools wheel
244 # We need to ignore wheels otherwise we break universal2 builds
245 python3 -m pip install -U --user --no-binary :all: Pyinstaller -r requirements.txt
b5899f4f 246
29cb20bd
SS
247 - name: Prepare
248 run: |
20314dd4 249 python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
44a79958 250 python3 devscripts/make_lazy_extractors.py
29cb20bd
SS
251 - name: Build
252 run: |
44a79958 253 python3 pyinst.py --target-architecture universal2 --onedir
b5899f4f 254 (cd ./dist/yt-dlp_macos && zip -r ../yt-dlp_macos.zip .)
44a79958 255 python3 pyinst.py --target-architecture universal2
b5899f4f 256
b73193c9 257 - name: Verify --update-to
258 if: vars.UPDATE_TO_VERIFICATION
259 run: |
260 chmod +x ./dist/yt-dlp_macos
261 cp ./dist/yt-dlp_macos ./dist/yt-dlp_macos_downgraded
262 version="$(./dist/yt-dlp_macos --version)"
263 ./dist/yt-dlp_macos_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
264 downgraded_version="$(./dist/yt-dlp_macos_downgraded --version)"
265 [[ "$version" != "$downgraded_version" ]]
266
29cb20bd
SS
267 - name: Upload artifacts
268 uses: actions/upload-artifact@v3
269 with:
270 path: |
271 dist/yt-dlp_macos
272 dist/yt-dlp_macos.zip
b5899f4f 273
29cb20bd 274 macos_legacy:
20314dd4 275 needs: process
29cb20bd 276 if: inputs.macos_legacy
6d916fe7 277 runs-on: macos-latest
28cdb605 278
6d916fe7 279 steps:
5438593a 280 - uses: actions/checkout@v4
29cb20bd
SS
281 - name: Install Python
282 # We need the official Python, because the GA ones only support newer macOS versions
283 env:
284 PYTHON_VERSION: 3.10.5
285 MACOSX_DEPLOYMENT_TARGET: 10.9 # Used up by the Python build tools
286 run: |
6d916fe7
SL
287 # Hack to get the latest patch version. Uncomment if needed
288 #brew install python@3.10
289 #export PYTHON_VERSION=$( $(brew --prefix)/opt/python@3.10/bin/python3 --version | cut -d ' ' -f 2 )
290 curl https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macos11.pkg -o "python.pkg"
291 sudo installer -pkg python.pkg -target /
292 python3 --version
29cb20bd
SS
293 - name: Install Requirements
294 run: |
6d916fe7 295 brew install coreutils
44a79958
SS
296 python3 -m pip install -U --user pip setuptools wheel
297 python3 -m pip install -U --user Pyinstaller -r requirements.txt
6d916fe7 298
29cb20bd
SS
299 - name: Prepare
300 run: |
20314dd4 301 python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
6d916fe7 302 python3 devscripts/make_lazy_extractors.py
29cb20bd
SS
303 - name: Build
304 run: |
6d916fe7 305 python3 pyinst.py
c4b6c5c7 306 mv dist/yt-dlp_macos dist/yt-dlp_macos_legacy
6d916fe7 307
b73193c9 308 - name: Verify --update-to
309 if: vars.UPDATE_TO_VERIFICATION
310 run: |
311 chmod +x ./dist/yt-dlp_macos_legacy
312 cp ./dist/yt-dlp_macos_legacy ./dist/yt-dlp_macos_legacy_downgraded
313 version="$(./dist/yt-dlp_macos_legacy --version)"
314 ./dist/yt-dlp_macos_legacy_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
315 downgraded_version="$(./dist/yt-dlp_macos_legacy_downgraded --version)"
316 [[ "$version" != "$downgraded_version" ]]
317
29cb20bd
SS
318 - name: Upload artifacts
319 uses: actions/upload-artifact@v3
320 with:
321 path: |
322 dist/yt-dlp_macos_legacy
6d916fe7 323
29cb20bd 324 windows:
20314dd4 325 needs: process
29cb20bd 326 if: inputs.windows
915f2a92 327 runs-on: windows-latest
47930b73 328
915f2a92 329 steps:
5438593a 330 - uses: actions/checkout@v4
29cb20bd
SS
331 - uses: actions/setup-python@v4
332 with: # 3.8 is used for Win7 support
333 python-version: "3.8"
334 - name: Install Requirements
335 run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds
17fc3dc4 336 python -m pip install -U pip setuptools wheel py2exe
365b9006 337 pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-5.8.0-py3-none-any.whl" -r requirements.txt
b5899f4f 338
29cb20bd
SS
339 - name: Prepare
340 run: |
20314dd4 341 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
b5899f4f 342 python devscripts/make_lazy_extractors.py
29cb20bd
SS
343 - name: Build
344 run: |
b5899f4f 345 python setup.py py2exe
346 Move-Item ./dist/yt-dlp.exe ./dist/yt-dlp_min.exe
347 python pyinst.py
348 python pyinst.py --onedir
349 Compress-Archive -Path ./dist/yt-dlp/* -DestinationPath ./dist/yt-dlp_win.zip
c4b6c5c7 350
b73193c9 351 - name: Verify --update-to
352 if: vars.UPDATE_TO_VERIFICATION
353 run: |
354 foreach ($name in @("yt-dlp","yt-dlp_min")) {
355 Copy-Item "./dist/${name}.exe" "./dist/${name}_downgraded.exe"
356 $version = & "./dist/${name}.exe" --version
357 & "./dist/${name}_downgraded.exe" -v --update-to yt-dlp/yt-dlp@2023.03.04
358 $downgraded_version = & "./dist/${name}_downgraded.exe" --version
359 if ($version -eq $downgraded_version) {
360 exit 1
361 }
362 }
363
29cb20bd
SS
364 - name: Upload artifacts
365 uses: actions/upload-artifact@v3
366 with:
367 path: |
368 dist/yt-dlp.exe
369 dist/yt-dlp_min.exe
370 dist/yt-dlp_win.zip
386cdfdb 371
29cb20bd 372 windows32:
20314dd4 373 needs: process
29cb20bd 374 if: inputs.windows32
915f2a92 375 runs-on: windows-latest
47930b73 376
915f2a92 377 steps:
5438593a 378 - uses: actions/checkout@v4
29cb20bd 379 - uses: actions/setup-python@v4
f4b95aca 380 with:
381 python-version: "3.8"
29cb20bd
SS
382 architecture: "x86"
383 - name: Install Requirements
384 run: |
17fc3dc4 385 python -m pip install -U pip setuptools wheel
365b9006 386 pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-5.8.0-py3-none-any.whl" -r requirements.txt
b5899f4f 387
29cb20bd
SS
388 - name: Prepare
389 run: |
20314dd4 390 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
b5899f4f 391 python devscripts/make_lazy_extractors.py
29cb20bd
SS
392 - name: Build
393 run: |
b5899f4f 394 python pyinst.py
b5899f4f 395
b73193c9 396 - name: Verify --update-to
397 if: vars.UPDATE_TO_VERIFICATION
398 run: |
399 foreach ($name in @("yt-dlp_x86")) {
400 Copy-Item "./dist/${name}.exe" "./dist/${name}_downgraded.exe"
401 $version = & "./dist/${name}.exe" --version
402 & "./dist/${name}_downgraded.exe" -v --update-to yt-dlp/yt-dlp@2023.03.04
403 $downgraded_version = & "./dist/${name}_downgraded.exe" --version
404 if ($version -eq $downgraded_version) {
405 exit 1
406 }
407 }
408
29cb20bd
SS
409 - name: Upload artifacts
410 uses: actions/upload-artifact@v3
411 with:
412 path: |
413 dist/yt-dlp_x86.exe
414
415 meta_files:
c4efa0ae 416 if: inputs.meta_files && always() && !cancelled()
29cb20bd 417 needs:
20314dd4 418 - process
29cb20bd
SS
419 - unix
420 - linux_arm
421 - macos
422 - macos_legacy
423 - windows
424 - windows32
14b17a55 425 runs-on: ubuntu-latest
14b17a55 426 steps:
29cb20bd 427 - uses: actions/download-artifact@v3
b1f94422 428
29cb20bd
SS
429 - name: Make SHA2-SUMS files
430 run: |
431 cd ./artifact/
432 sha256sum * > ../SHA2-256SUMS
433 sha512sum * > ../SHA2-512SUMS
c4b6c5c7 434
29cb20bd
SS
435 - name: Make Update spec
436 run: |
437 cat >> _update_spec << EOF
438 # This file is used for regulating self-update
f4b95aca 439 lock 2022.08.18.36 .+ Python 3\.6
440 lock 2023.11.16 (?!win_x86_exe).+ Python 3\.7
441 lock 2023.11.16 win_x86_exe .+ Windows-(?:Vista|2008Server)
442 lockV2 yt-dlp/yt-dlp 2022.08.18.36 .+ Python 3\.6
443 lockV2 yt-dlp/yt-dlp 2023.11.16 (?!win_x86_exe).+ Python 3\.7
444 lockV2 yt-dlp/yt-dlp 2023.11.16 win_x86_exe .+ Windows-(?:Vista|2008Server)
445 lockV2 yt-dlp/yt-dlp-nightly-builds 2023.11.15.232826 (?!win_x86_exe).+ Python 3\.7
446 lockV2 yt-dlp/yt-dlp-nightly-builds 2023.11.15.232826 win_x86_exe .+ Windows-(?:Vista|2008Server)
447 lockV2 yt-dlp/yt-dlp-master-builds 2023.11.15.232812 (?!win_x86_exe).+ Python 3\.7
448 lockV2 yt-dlp/yt-dlp-master-builds 2023.11.15.232812 win_x86_exe .+ Windows-(?:Vista|2008Server)
29cb20bd
SS
449 EOF
450
12647e03
SS
451 - name: Sign checksum files
452 env:
453 GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
454 if: env.GPG_SIGNING_KEY != ''
455 run: |
456 gpg --batch --import <<< "${{ secrets.GPG_SIGNING_KEY }}"
457 for signfile in ./SHA*SUMS; do
458 gpg --batch --detach-sign "$signfile"
459 done
460
29cb20bd
SS
461 - name: Upload artifacts
462 uses: actions/upload-artifact@v3
463 with:
464 path: |
465 SHA*SUMS*
466 _update_spec