Skip to content

Commit 813777c

Browse files
committed
update ffmpeg repo
try to fix 502 error
1 parent bca7a06 commit 813777c

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
run: |
174174
set FF_BRANCH=%FF_VERSION%
175175
if not [%FF_BRANCH%]==[master] set FF_BRANCH=release/%FF_VERSION%
176-
git clone -b %FF_BRANCH% --depth 1 --no-tags https://git.ffmpeg.org/ffmpeg.git ffmpeg-%FF_VERSION%
176+
git clone -b %FF_BRANCH% --depth 1 --no-tags https://code.ffmpeg.org/FFmpeg/FFmpeg.git ffmpeg-%FF_VERSION%
177177
if not [%CONFIG_SUFFIX%]==[-default] copy /y config%CONFIG_SUFFIX%.sh config.sh
178178
- uses: msys2/setup-msys2@v2
179179
with:
@@ -256,7 +256,7 @@ jobs:
256256
run: |
257257
set FF_BRANCH=%FF_VERSION%
258258
if not [%FF_BRANCH%]==[master] set FF_BRANCH=release/%FF_VERSION%
259-
git clone -b %FF_BRANCH% --depth 1 --no-tags https://git.ffmpeg.org/ffmpeg.git ffmpeg-%FF_VERSION%
259+
git clone -b %FF_BRANCH% --depth 1 --no-tags https://code.ffmpeg.org/FFmpeg/FFmpeg.git ffmpeg-%FF_VERSION%
260260
if not [%CONFIG_SUFFIX%]==[-default] copy /y config%CONFIG_SUFFIX%.sh config.sh
261261
- uses: msys2/setup-msys2@v2
262262
with:

.github/workflows/build_gpl.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: |
9797
set FF_BRANCH=%FF_VERSION%
9898
if not [%FF_BRANCH%]==[master] set FF_BRANCH=release/%FF_VERSION%
99-
git clone -b %FF_BRANCH% --depth 1 --no-tags https://git.ffmpeg.org/ffmpeg.git ffmpeg-%FF_VERSION%
99+
git clone -b %FF_BRANCH% --depth 1 --no-tags https://code.ffmpeg.org/FFmpeg/FFmpeg.git ffmpeg-%FF_VERSION%
100100
if not [%CONFIG_SUFFIX%]==[-default] copy /y config%CONFIG_SUFFIX%.sh config.sh
101101
- uses: msys2/setup-msys2@v2
102102
with:
@@ -123,6 +123,8 @@ jobs:
123123
7z x -y libmdk-dep.zip
124124
7z x -y dep-av.7z -otools
125125
cp -af tools/dep-av/* tools/dep/
126+
pwd
127+
find tools/dep*/windows*
126128
curl -kL -o AMF-headers.tar.gz https://github.com/GPUOpen-LibrariesAndSDKs/AMF/releases/download/v$AMF_VER/AMF-headers-v$AMF_VER.tar.gz
127129
tar xf AMF-headers.tar.gz -C tools/dep/include --strip-components=1
128130
grep AMF_VERSION tools/dep/include/AMF/core/Version.h

tools/ci-before-build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ if [ -f ffmpeg-${FF_VERSION}/configure ]; then
9898
cd -
9999
elif [ -n "$FF_COMMIT" ]; then
100100
echo "no ffmpeg src. clone and checkout $FF_COMMIT"
101-
git clone -b ${FF_BRANCH} ${FFREPO:-https://git.ffmpeg.org/ffmpeg.git} ffmpeg-${FF_VERSION}
101+
git clone -b ${FF_BRANCH} ${FFREPO:-https://code.ffmpeg.org/FFmpeg/FFmpeg.git} ffmpeg-${FF_VERSION}
102102
cd ffmpeg-${FF_VERSION}
103103
git checkout $FF_COMMIT
104104
cd -
105105
else
106106
echo "no ffmpeg src. clone"
107-
git clone -b ${FF_BRANCH} --depth 1 --no-tags ${FFREPO:-https://git.ffmpeg.org/ffmpeg.git} ffmpeg-${FF_VERSION}
107+
git clone -b ${FF_BRANCH} --depth 1 --no-tags ${FFREPO:-https://code.ffmpeg.org/FFmpeg/FFmpeg.git} ffmpeg-${FF_VERSION}
108108
fi
109109

110110
if [ -n "${CONFIG_SUFFIX}" ]; then

0 commit comments

Comments
 (0)