Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
symlinks
Browse files Browse the repository at this point in the history
Authored by: bashonly
bashonly committed Mar 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent ac396cd commit e66b6aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -247,7 +247,7 @@ jobs:
run: |
brew install coreutils
python3 devscripts/install_deps.py --user -o --include build
python3 devscripts/install_deps.py --print --include pyinstaller_macos > requirements.txt
python3 devscripts/install_deps.py --print --include pyinstaller > requirements.txt
# We need to ignore wheels otherwise we break universal2 builds
python3 -m pip install -U --user --no-binary :all: -r requirements.txt
# We need to fuse our own universal2 wheels for curl_cffi
@@ -273,9 +273,9 @@ jobs:
python3 devscripts/make_lazy_extractors.py
- name: Build
run: |
python3 -m bundle.pyinstaller --target-architecture universal2 --onedir
python3 -m bundle.pyinstaller --target-architecture universal2 --onedir --symlinks
(cd ./dist/yt-dlp_macos && zip -r ../yt-dlp_macos.zip .)
python3 -m bundle.pyinstaller --target-architecture universal2
python3 -m bundle.pyinstaller --target-architecture universal2 --symlinks
- name: Verify --update-to
if: vars.UPDATE_TO_VERIFICATION
@@ -319,15 +319,15 @@ jobs:
run: |
brew install coreutils
python3 devscripts/install_deps.py --user -o --include build
python3 devscripts/install_deps.py --user --include pyinstaller_macos --include curl_cffi
python3 devscripts/install_deps.py --user --include pyinstaller --include curl_cffi
- name: Prepare
run: |
python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
python3 devscripts/make_lazy_extractors.py
- name: Build
run: |
python3 -m bundle.pyinstaller
python3 -m bundle.pyinstaller --symlinks
mv dist/yt-dlp_macos dist/yt-dlp_macos_legacy
- name: Verify --update-to

0 comments on commit e66b6aa

Please sign in to comment.