Skip to content

Commit 3ea3788

Browse files
committed
.ci/build-wheels.sh: Fix broken sourceforge URL to lame
Both GitHub Actions jobs `linux_wheels` are failing because of a broken sourceforge URL to lame. Fixing that URL allows these two GitHub Actions jobs to pass.
1 parent 58b68c2 commit 3ea3788

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.ci/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ make install;
5757
make distclean;
5858

5959
cd ~/ffmpeg_sources;
60-
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
60+
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
6161
tar xzf "lame-$LAME_VERSION.tar.gz"
6262
cd "lame-$LAME_VERSION"
6363
./configure --prefix="$BUILD_DIR" --enable-nasm --enable-shared;

.ci/build_wheels_osx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if [ "$ARCH" = "x86_64" ]; then
127127
arg=("--enable-nasm")
128128
fi
129129
cd "$SRC_PATH";
130-
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
130+
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
131131
tar xzf "lame-$LAME_VERSION.tar.gz"
132132
cd "lame-$LAME_VERSION"
133133
git apply "$base_dir/.ci/libmp3lame-symbols.patch"

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
python3 -m pip install --upgrade pip pytest
185185
root=`pwd`
186186
cd ~/
187-
python3 -m pip install --no-index --find-links=$root/dist ffpyplayer
187+
python3 -m pip install --find-links=$root/dist ffpyplayer
188188
- name: Test
189189
run: |
190190
root=`pwd`

0 commit comments

Comments
 (0)