Skip to content

Commit 2f2a38a

Browse files
committed
Add quiet flags
1 parent f61971b commit 2f2a38a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/windows_source_build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
- name: Install FFmpeg
4747
run: |
4848
# Install FFmpeg and its development headers
49-
conda install "ffmpeg=${{ matrix.ffmpeg-version }}" -c conda-forge
49+
conda install "ffmpeg=${{ matrix.ffmpeg-version }}" -c conda-forge --quiet
5050
5151
# Try to install FFmpeg development package if available
52-
conda install ffmpeg-dev -c conda-forge || echo "ffmpeg-dev not available, continuing..."
52+
conda install ffmpeg-dev -c conda-forge --quiet || echo "ffmpeg-dev not available, continuing..."
5353
5454
ffmpeg -version
5555
@@ -86,13 +86,13 @@ jobs:
8686
- name: Install build dependencies
8787
run: |
8888
# Install pkg-config and pybind11 which are needed for Windows builds
89-
conda install -y pkg-config pybind11 -c conda-forge
89+
conda install -y pkg-config pybind11 -c conda-forge --quiet
9090
9191
# Install FFmpeg development dependencies that are needed for linking on Windows
92-
conda install -y ffmpeg-dev harfbuzz-dev freetype-dev fontconfig-dev -c conda-forge || true
92+
conda install -y ffmpeg-dev harfbuzz-dev freetype-dev fontconfig-dev -c conda-forge --quiet || true
9393
9494
# Alternative: install common FFmpeg dependencies individually
95-
conda install -y harfbuzz freetype fontconfig expat libxml2 zlib libbz2 openssl -c conda-forge || true
95+
conda install -y harfbuzz freetype fontconfig expat libxml2 zlib libbz2 openssl -c conda-forge --quiet || true
9696
9797
# Verify pkg-config can find FFmpeg
9898
echo "Testing pkg-config for FFmpeg libraries:"

0 commit comments

Comments
 (0)